-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
62 lines (44 loc) · 913 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
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
[MAIN]
recursive=yes
source-roots=./**/*.py
[BASIC]
bad-names=foo,
baz,
toto,
tutu,
tata
[CLASSES]
[DESIGN]
[EXCEPTIONS]
[FORMAT]
max-line-length=120
[IMPORTS]
[LOGGING]
logging-format-style=new
[MESSAGES CONTROL]
disable=raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
use-implicit-booleaness-not-comparison-to-string,
use-implicit-booleaness-not-comparison-to-zero,
# added
missing-module-docstring,
logging-fstring-interpolation,
unused-variable,
unused-private-member,
unused-import
[METHOD_ARGS]
[MISCELLANEOUS]
[REFACTORING]
[REPORTS]
[SIMILARITIES]
[SPELLING]
# spelling-dict=en_US
[STRING]
[TYPECHECK]
[VARIABLES]