-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
55 lines (41 loc) · 853 Bytes
/
.pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[MESSAGES CONTROL]
disable=
missing-docstring,
too-few-public-methods,
fixme,
broad-except,
too-many-instance-attributes,
too-many-arguments,
raise-missing-from,
no-self-use,
arguments-renamed
iterating-dictionary
max-public-method=20
[REPORTS]
output-format=colorized
files-output=no
reports=no
evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
[MISCELLANEOUS]
notes=FIXME,TODO
[FORMAT]
max-line-length=120
max-module-lines=1500
[SIMILARITIES]
min-similarity-lines=6
ignore-comments=yes
ignore-docstrings=yes
[ELIF]
max-nested-blocks=6
[DESIGN]
max-complexity=10
max-args=12
ignored-argument-names=_.*
max-locals=25
max-parents=15
max-attributes=10
min-public-methods=0
max-public-methods=15
max-bool-expr=5
[EXCEPTIONS]
overgeneral-exceptions=Exception