-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pylintrc
56 lines (56 loc) · 1.26 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
[pylint]
disable=
arguments-differ,
arguments-renamed,
attribute-defined-outside-init,
bad-continuation,
bad-option-value,
broad-except,
broad-exception-raised,
consider-using-dict-items,
consider-using-enumerate,
consider-using-f-string,
consider-using-in,
consider-using-with,
empty-docstring,
exec-used,
import-error,
inconsistent-return-statements,
invalid-name,
line-too-long,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-break,
no-else-raise,
no-else-return,
no-member,
no-self-use,
possibly-used-before-assignment,
protected-access,
redefined-outer-name,
simplifiable-if-expression,
superfluous-parens,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
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,
try-except-raise,
unidiomatic-typecheck,
unspecified-encoding,
unused-argument,
unused-variable,
useless-object-inheritance,
useless-return,
good-names=
template-python
ignore=
__init__.py,
notes=
FIXME,