-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pylintrc
64 lines (59 loc) · 1.25 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
57
58
59
60
61
62
63
64
[MASTER]
persistent=no
extension-pkg-whitelist=cv2,numpy
ignore=stbt_rig.py
[REPORTS]
msg-template={path}:{line}:{column}: [{msg_id}({symbol}), {obj}] {msg}
output-format=colorized
reports=no
score=no
[MESSAGES CONTROL]
disable=
bad-classmethod-argument,
bad-continuation,
bad-mcs-method-argument,
bad-option-value,
blacklisted-name,
consider-using-dict-items,
consider-using-f-string,
duplicate-code,
empty-docstring,
global-statement,
import-outside-toplevel,
inconsistent-return-statements,
invalid-name,
len-as-condition,
locally-disabled,
locally-enabled,
misplaced-comparison-constant,
missing-docstring,
multiple-statements,
no-init,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-self-use,
protected-access,
raise-missing-from,
singleton-comparison,
too-few-public-methods,
too-many-ancestors,
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,
wrong-import-position,
[VARIABLES]
dummy-variables-rgx=_
[FORMAT]
max-line-length=80
ignore-long-lines=https?://
[IMPORTS]
known-third-party=cv2