-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpylintrc
More file actions
41 lines (33 loc) · 917 Bytes
/
pylintrc
File metadata and controls
41 lines (33 loc) · 917 Bytes
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
[MASTER]
# Use multiple processes to speed up Pylint
jobs=1
# Pickle collected data for later comparisons
persistent=yes
[MESSAGES CONTROL]
# Disable specific warnings
disable=
C0111, # missing-docstring
C0103, # invalid-name (for short variable names)
R0913, # too-many-arguments
R0914, # too-many-locals
R0912, # too-many-branches
R0915, # too-many-statements
W0212, # protected-access
W0511, # fixme
C0301, # line-too-long
[FORMAT]
# Maximum number of characters on a single line
max-line-length=100
# String used for indentation
indent-string=' '
[BASIC]
# Good variable names which should always be accepted
good-names=i,j,k,ex,_,e,f,fd
[DESIGN]
# Maximum number of arguments for function / method
max-args=10
# Maximum number of locals for function / method body
max-locals=20
[SIMILARITIES]
# Minimum lines number of a similarity
min-similarity-lines=10