-
Notifications
You must be signed in to change notification settings - Fork 5
/
.pylintrc
51 lines (34 loc) · 864 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
[MASTER]
[MESSAGES CONTROL]
disable=fixme
[MISCELLANEOUS]
# List of note tags to take in consideration, separated by a comma.
notes=FIXME,
TODO
[FORMAT]
# Maximum number of characters on a single line.
max-line-length=120
# Good variable names which should always be accepted, separated by a comma.
good-names=i,
j,
k,
m,
r,
ax,
df,
_
[BASIC]
# Minimum line number of a method for requiring a docstring.
docstring-min-length=3
no-docstring-rgx=^test_.*
[DESIGN]
min-public-methods=1
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=50
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=no