-
Notifications
You must be signed in to change notification settings - Fork 50
/
.pylintrc
63 lines (49 loc) · 1017 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
56
57
58
59
60
61
62
63
[MASTER]
load-plugins=pylint_protobuf
[VARIABLES]
dummy-variables-rgx=^ignored_|^unused_|_
[DESIGN]
max-args=14
max-parents=8
[FORMAT]
max-line-length=160
[MISCELLANEOUS]
notes=FIXME
[MESSAGES CONTROL]
disable=
cyclic-import,
duplicate-code,
import-error,
invalid-name,
locally-disabled,
locally-enabled,
missing-docstring,
misplaced-comparison-constant,
no-init,
no-name-in-module,
protected-access,
too-few-public-methods,
too-many-instance-attributes,
too-many-lines,
too-many-nested-blocks,
too-many-locals,
too-many-ancestors,
too-many-return-statements,
too-many-branches,
too-many-statements,
too-many-arguments,
too-many-public-methods,
super-init-not-called,
useless-else-on-loop,
no-else-return,
useless-object-inheritance,
wrong-import-order,
bad-continuation,
invalid-overridden-method,
consider-using-f-string,
raise-missing-from,
broad-except,
unnecessary-pass,
unused-argument,
super-with-arguments,
abstract-method