-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pylintrc
51 lines (51 loc) · 1.1 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
[pylint]
disable=
bare-except,
broad-except,
consider-using-dict-items,
consider-using-f-string,
consider-using-with,
deprecated-method,
duplicate-code,
eval-used,
global-at-module-level,
global-statement,
global-variable-not-assigned,
import-error,
invalid-name,
line-too-long,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
multiple-statements,
no-else-break,
no-else-continue,
no-else-return,
no-member,
no-self-use,
no-value-for-parameter,
pointless-statement,
possibly-used-before-assignment,
redefined-outer-name,
too-many-branches,
too-many-locals,
too-many-nested-blocks,
too-many-return-statements,
too-many-statements,
trailing-newlines,
trailing-whitespace,
undefined-variable,
unidiomatic-typecheck,
unspecified-encoding,
unused-argument,
unused-import,
unused-variable,
used-before-assignment,
useless-return,
wrong-import-order,
good-names=
template-python
ignore=
__init__.py,
notes=
FIXME,