-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pylintrc
56 lines (48 loc) · 1.04 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
[MASTER]
ignore=CVS
jobs=1
suggestion-mode=yes
[MESSAGES CONTROL]
disable=all
enable=unused-variable,
bare-except,
unused-import,
trailing-whitespace,
redefined-builtin,
bad-super-call,
redefined-outer-name,
dangerous-default-value,
unneeded-not,
too-many-locals,
cyclic-import
[REFACTORING]
max-nested-blocks=5
[MISCELLANEOUS]
notes=BUG,
TODO
[VARIABLES]
init-import=no
[FORMAT]
expected-line-ending-format=LF
ignore-long-lines=^\s*(# )?<?https?://\S+>?$
indent-string=' '
max-line-length=100
max-module-lines=1000
single-line-class-stmt=yes
single-line-if-stmt=yes
[CLASSES]
defining-attr-methods=__init__,
__new__,
setUp
exclude-protected=_asdict,
_fields,
_replace,
_source,
_make
valid-classmethod-first-arg=cls
valid-metaclass-classmethod-first-arg=cls
[DESIGN]
max-locals=18
[EXCEPTIONS]
overgeneral-exceptions=BaseException,
Exception