-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
63 lines (62 loc) · 1.49 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
[MESSAGES CONTROL]
# This controls the checks that pylint ignores.
#
# If you add to this list, please keep it in
# alphabetical order.
#
# to list all possibilities, run:
#
# pylint --list-msg
#
disable=
abstract-method,
attribute-defined-outside-init,
broad-except,
consider-using-set-comprehension,
cyclic-import,
duplicate-code,
fixme,
import-error,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
line-too-long,
logging-format-interpolation,
logging-fstring-interpolation,
logging-not-lazy,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
pointless-string-statement,
protected-access,
redefined-builtin,
redefined-outer-name,
super-with-arguments,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-function-args,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
unidiomatic-typecheck,
unnecessary-comprehension,
unnecessary-lambda,
unnecessary-pass,
unspecified-encoding,
useless-object-inheritance,
useless-return,
wrong-import-order,
wrong-import-position,
consider-using-min-builtin,
consider-using-max-builtin,