-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
.pylint.ini
49 lines (43 loc) · 1.13 KB
/
.pylint.ini
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
[MESSAGES CONTROL]
disable=
# Generally useless for this project:
fixme,
global-statement,
invalid-name,
missing-docstring,
redefined-outer-name,
too-few-public-methods,
too-many-locals,
too-many-arguments,
unnecessary-pass,
broad-except,
duplicate-code,
too-many-branches,
too-many-return-statements,
too-many-public-methods,
too-many-ancestors,
too-many-instance-attributes,
too-many-statements,
attribute-defined-outside-init,
unsupported-assignment-operation,
unsupported-delete-operation,
too-many-nested-blocks,
protected-access,
unspecified-encoding,
# Disabling these helps to write more expressive tests:
expression-not-assigned,
blacklisted-name,
# Handled by automatic formatting:
line-too-long,
# False positives:
no-member,
unsupported-membership-test,
cell-var-from-loop,
cyclic-import,
comparison-with-callable,
unsupported-binary-operation,
init-import=yes
[REPORTS]
score=no
[VARIABLES]
dummy-variables-rgx=_+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_|__tracebackhide__