-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pylintrc
60 lines (57 loc) · 1.29 KB
/
.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
[MASTER]
jobs=2
max-line-length=120
[MESSAGES CONTROL]
disable =
missing-docstring,
line-too-long,
invalid-name,
no-value-for-parameter,
no-member,
superfluous-parens,
wrong-import-order,
unused-argument,
broad-except,
relative-beyond-top-level,
wrong-import-position,
bare-except,
unused-variable,
unsubscriptable-object,
redefined-builtin,
no-self-argument,
too-many-arguments,
too-many-locals,
protected-access,
unidiomatic-typecheck,
redefined-outer-name,
ungrouped-imports,
too-many-branches,
too-many-statements,
too-many-ancestors,
anomalous-backslash-in-string,
bad-classmethod-argument,
too-few-public-methods,
arguments-differ,
too-many-instance-attributes,
locally-disabled,
too-many-return-statements,
too-many-nested-blocks,
abstract-method,
too-many-public-methods,
super-init-not-called,
consider-iterating-dictionary,
attribute-defined-outside-init,
too-many-lines,
len-as-condition,
unsupported-assignment-operation,
consider-using-ternary,
cyclic-import,
similarities,
inconsistent-return-statements, # checked by mypy
unbalanced-tuple-unpacking, # "possible" doesn't mean necessary, check seems useless and blocks valid code
[REPORTS]
output-format=colorized
[FORMAT]
logging-modules=
logging,
structlog,