-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.pylintrc
More file actions
102 lines (79 loc) · 1.83 KB
/
.pylintrc
File metadata and controls
102 lines (79 loc) · 1.83 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[MAIN]
jobs=0
persistent=no
unsafe-load-any-extension=yes
[TYPECHECK]
ignored-classes=cv2
[BASIC]
argument-naming-style=camelCase
attr-naming-style=camelCase
bad-names=foo,
bar,
baz,
toto,
tutu,
tata
class-attribute-naming-style=camelCase
class-const-naming-style=UPPER_CASE
class-naming-style=PascalCase
const-naming-style=UPPER_CASE
function-naming-style=camelCase
good-names=i,
j,
k,
ex,
Run,
_,
B, G, R,
x1, y1, x2, y2,
a, b, c, d, e, f, x, y,
p0, fig, ax
good-names-rgxs=
include-naming-hint=yes
inlinevar-naming-style=any
method-naming-style=camelCase
module-naming-style=any
name-group=
no-docstring-rgx=^_
property-classes=abc.abstractproperty
variable-naming-style=camelCase
[DESIGN]
max-args=6
max-positional-arguments=5
max-attributes=7
max-bool-expr=5
max-branches=15
max-locals=15
max-parents=7
max-public-methods=20
max-returns=6
max-statements=50
min-public-methods=2
[EXCEPTIONS]
overgeneral-exceptions=builtins.BaseException,builtins.Exception
[FORMAT]
max-line-length=79
max-module-lines=2000
[MESSAGES CONTROL]
confidence=HIGH,
CONTROL_FLOW,
INFERENCE,
INFERENCE_FAILURE,
UNDEFINED
# Justifications for disabling checkers
# import-error: perma disabled. It's ALE's fault
# too-many-*-*: may be temporarily disabled to focus on other problems
# missing-*-docstring: may be temporarily disabled to focus on other problems
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
import-error,
design,
[REFACTORING]
max-nested-blocks=5
never-returning-functions=sys.exit,argparse.parse_error