-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.pylintrc
51 lines (46 loc) · 1.05 KB
/
.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]
load-plugins = pylint.extensions.check_elif
[MESSAGES CONTROL]
disable =
bad-builtin,
bad-continuation,
bad-option-value,
duplicate-code,
fixme,
inconsistent-return-statements,
invalid-name,
len-as-condition,
locally-disabled,
locally-enabled,
no-else-break,
no-else-continue,
no-else-raise,
no-else-return,
no-self-use,
raise-missing-from,
redefined-variable-type,
subprocess-popen-preexec-fn,
superfluous-parens,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-instance-attributes,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-positional-arguments,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
use-dict-literal,
use-sequence-for-iteration,
[BASIC]
no-docstring-rgx = .*
[REPORTS]
reports = no
score = no
msg-template = {path}:{line}: {C}: {symbol} [{obj}] {msg}
[FORMAT]
max-line-length = 140
expected-line-ending-format = LF
# vim:ft=dosini ts=4 sts=4 sw=4 et