-
Notifications
You must be signed in to change notification settings - Fork 8
/
.pylintrc
32 lines (32 loc) · 909 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
[MASTER]
init-hook="from pylint.config import find_pylintrc; import os, sys; sys.path.append(os.path.dirname(find_pylintrc()))"
variable-rgx=[a-z_][a-z0-9_]{0,40}$
argument-rgx=[a-z_][a-z0-9_]{0,40}$
disable=
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
line-too-long,
pointless-string-statement,
too-many-arguments,
singleton-comparison,
superfluous-parens,
logging-fstring-interpolation,
f-string-without-interpolation,
trailing-whitespace,
global-statement,
bare-except,
broad-except,
unidiomatic-typecheck,
no-else-return,
too-few-public-methods,
too-many-instance-attributes,
too-many-locals,
too-many-statements,
protected-access,
consider-using-enumerate,
no-self-use,
unnecessary-lambda,
unused-wildcard-import,
wildcard-import,
global-variable-not-assigned,