forked from beancount/beangulp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
49 lines (49 loc) · 1.22 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
[MESSAGES CONTROL]
enable=all
disable=
locally-disabled,
suppressed-message,
# pylint is not smart enough to get this right
arguments-differ,
duplicate-code,
f-string-without-interpolation,
fixme,
import-error,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
invalid-unary-operand-type,
missing-class-docstring,
missing-docstring,
missing-function-docstring,
no-value-for-parameter,
not-callable,
protected-access,
redefined-argument-from-local,
stop-iteration-return,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-locals,
too-many-return-statements,
too-many-statements,
undefined-loop-variable,
unsubscriptable-object,
# does not play nicely with decorators injecting arguments as done
# by the cache decorator. disable it globally instead than having to
# sprinkle pylint directives all over
unexpected-keyword-arg,
# revisit these maybe
assignment-from-no-return,
broad-except,
logging-format-interpolation,
no-self-use,
redefined-outer-name,
super-init-not-called,
unused-argument,
unused-variable,
unused-wildcard-import,
wildcard-import,
consider-using-f-string,
unspecified-encoding