-
Notifications
You must be signed in to change notification settings - Fork 47
/
pylintrc
68 lines (65 loc) · 1.88 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
61
62
63
64
65
66
67
68
[MESSAGES CONTROL]
# TODO: Reformat code so that most of these can be removed eventually
disable=too-many-statements,
comparison-with-callable,
lost-exception,
keyword-arg-before-vararg,
deprecated-method,
too-many-public-methods,
stop-iteration-return,
no-else-raise,
attribute-defined-outside-init,
protected-access,
super-init-not-called,
len-as-condition,
dangerous-default-value,
unnecessary-pass,
too-many-lines,
consider-using-in,
too-many-locals,
abstract-method,
singleton-comparison,
literal-comparison,
inconsistent-return-statements,
broad-except,
logging-not-lazy,
redefined-builtin,
cell-var-from-loop,
logging-format-interpolation,
useless-super-delegation,
raise-missing-from,
no-self-use,
too-few-public-methods,
no-else-return,
useless-object-inheritance,
duplicate-code,
too-many-arguments,
logging-fstring-interpolation,
super-with-arguments,
arguments-differ,
wildcard-import,
unused-argument,
invalid-name,
unused-wildcard-import,
redefined-outer-name,
# Already covered by flake8:
unneeded-not,
line-too-long,
unnecessary-semicolon,
trailing-whitespace,
missing-final-newline,
bad-indentation,
multiple-statements,
bare-except,
undefined-variable,
unused-import,
unused-variable,
too-many-branches,
# We don't need to fix these:
fixme,
missing-class-docstring,
missing-module-docstring,
missing-function-docstring
[FORMAT]
# Expected format of line ending, e.g. empty (any line ending), LF or CRLF.
expected-line-ending-format=LF