forked from erikrose/blessings
-
Notifications
You must be signed in to change notification settings - Fork 72
/
.pylintrc
50 lines (43 loc) · 1013 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
[MASTER]
load-plugins=
pylint.extensions.mccabe,
pylint.extensions.check_elif,
pylint.extensions.docparams,
pylint.extensions.overlapping_exceptions,
pylint.extensions.redefined_variable_type
persistent = no
jobs = 0
unsafe-load-any-extension = yes
[MESSAGES CONTROL]
disable=
fixme,
consider-using-f-string, # Python 2
raise-missing-from, # Python 2
redundant-u-string-prefix, # Python 2
super-with-arguments, # Python 2
useless-object-inheritance # Python 2
[FORMAT]
max-line-length: 100
good-names=ks,fd,_,x,y
[PARAMETER_DOCUMENTATION]
default-docstring-type=sphinx
accept-no-raise-doc=no
accept-no-param-doc=yes
accept-no-return-doc=yes
[DESIGN]
max-args=10
max-attributes=7
max-branches=12
max-complexity=11
max-locals=15
max-module-lines=1300
max-parents=7
max-public-methods=20
max-returns=6
max-statements=50
[SIMILARITIES]
ignore-imports=yes
min-similarity-lines=8
[REPORTS]
reports=no
msg-template={path}:{line}: [{msg_id}({symbol}), {obj}] {msg}