-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
44 lines (30 loc) · 799 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
[MASTER]
# Use multiple processes to speed up Pylint. Specifying 0 will auto-detect the
# number of processors available to use.
jobs=0
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s).
disable=missing-module-docstring,
too-few-public-methods
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=150
[BASIC]
good-names=i,
j,
k,
ex,
id,
Run,
io,
logger
[LOGGING]
logging-format-style=new
logging-modules=logging
[DESIGN]
# Maximum number of arguments for function / method.
max-args=5
# Maximum number of return / yield for function / method body.
max-returns=3
# Maximum number of statements in function / method body.
max-statements=25