-
Notifications
You must be signed in to change notification settings - Fork 27
/
.pylintrc
46 lines (37 loc) · 1 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
[MASTER]
[MESSAGES CONTROL]
disable = I0011, # locally-disabled
R0903, # too-few-public-methods
C0413, # wrong-import-position (isort is handling this)
C0412, # ungrouped-imports (isort is handling this)
[REPORTS]
# Set the output format. Available formats are text, parseable, colorized, msvs
# (visual studio) and html
output-format=colorized
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
# Maximum number of lines in a module
#max-module-lines=1000
[BASIC]
good-names=
i,
e,
logger
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=5
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
[VARIABLES]
# Tells whether we should check for unused import in __init__ files.
init-import=yes
[LOGGING]
# Apply logging string format checks to calls on these modules.
logging-modules=
logging
[TYPECHECK]
ignored-modules=
distutils