-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
39 lines (30 loc) · 949 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
[MESSAGES CONTROL]
disable=
locally-disabled,
logging-format-interpolation,
too-few-public-methods,
too-many-instance-attributes, # <-- Ensure at least this entry.
fixme,
no-member,
unused-argument,
attribute-defined-outside-init,
duplicate-code
[FORMAT]
max-line-length=240
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
[DESIGN]
max-locals=25
max-args=16
[SIMILARITIES]
# Minimum lines number of a similarity.
min-similarity-lines=8
# Ignore comments when computing similarities.
ignore-comments=yes
# Ignore docstrings when computing similarities.
ignore-docstrings=yes
# Ignore imports when computing similarities.
ignore-imports=yes