-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
51 lines (51 loc) · 1.13 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,
broad-exception-raised,
cell-var-from-loop,
consider-using-dict-items,
consider-using-f-string,
consider-using-with,
eval-used,
f-string-without-interpolation,
global-statement,
import-error,
inconsistent-return-statements,
invalid-name,
line-too-long,
logging-fstring-interpolation,
logging-not-lazy,
missing-function-docstring,
missing-module-docstring,
multiple-statements,
no-else-break,
no-else-continue,
possibly-used-before-assignment,
protected-access,
redefined-outer-name,
superfluous-parens,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-statements,
trailing-whitespace,
undefined-variable,
ungrouped-imports,
unidiomatic-typecheck,
unspecified-encoding,
unused-argument,
unused-import,
unused-variable,
used-before-assignment,
useless-return,
using-constant-test,
good-names=
template-python
ignore=
__init__.py,
notes=
FIXME,