-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pylintrc
More file actions
54 lines (52 loc) · 1.27 KB
/
.pylintrc
File metadata and controls
54 lines (52 loc) · 1.27 KB
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
[MESSAGES CONTROL]
disable=fixme,
trailing-whitespace,
missing-final-newline,
too-few-public-methods,
too-many-public-methods,
global-statement,
assignment-from-none,
unused-format-string-key,
invalid-name,
bad-classmethod-argument,
bad-mcs-method-argument,
bad-mcs-classmethod-argument,
too-many-lines,
multiple-statements,
superfluous-parens,
no-self-argument,
E1103,
I0014,
exec-used,
attribute-defined-outside-init,
abstract-method,
super-init-not-called,
unnecessary-semicolon,
wildcard-import,
global-variable-undefined,
redefined-outer-name,
broad-except,
anomalous-backslash-in-string,
wrong-import-order,
ungrouped-imports,
empty-docstring,
missing-docstring,
missing-module-docstring,
missing-function-docstring,
missing-class-docstring,
duplicate-code,
import-error,
protected-access
[FORMAT]
max-line-length=159
[DESIGN]
max-locals=20
max-returns=6
max-branches=23
max-statements=60
min-public-methods=1
max-public-methods=20
max-parents=7
max-attributes=11
max-module-lines=1000
max-args=8