-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
44 lines (44 loc) · 1006 Bytes
/
.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
[pylint]
disable=
broad-except,
consider-using-f-string,
consider-using-sys-exit,
consider-using-with,
expression-not-assigned,
global-statement,
global-variable-undefined,
import-error,
invalid-name,
line-too-long,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-continue,
no-self-use,
possibly-unused-variable,
possibly-used-before-assignment,
redefined-outer-name,
simplifiable-if-expression,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-return-statements,
too-many-statements,
try-except-raise,
unnecessary-pass,
unspecified-encoding,
unused-argument,
unused-variable,
used-before-assignment,
useless-return,
good-names=
template-python
ignore=
__init__.py,
notes=
FIXME,