-
Notifications
You must be signed in to change notification settings - Fork 3
/
.pylintrc
52 lines (29 loc) · 921 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
[MASTER]
# Use multiple processes to speed up Pylint.
jobs=0
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id.
disable=duplicate-code
[REPORTS]
# Tells whether to display a full report or only the messages
reports=yes
[REFACTORING]
# Maximum number of nested blocks for function / method body
max-nested-blocks=10
[BASIC]
# Good variable names which should always be accepted, separated by a comma
good-names=e,i,j,k,_
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=79
[DESIGN]
# Maximum number of arguments for function / method
max-args=7
# Maximum number of branch for function / method body
max-branches=30
# Maximum number of locals for function / method body
max-locals=25
# Maximum number of return / yield for function / method body
max-returns=20
# Maximum number of statements in function / method body
max-statements=100