-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path_pylintrc
60 lines (51 loc) · 1.25 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
52
53
54
55
56
57
58
59
60
[MASTER]
jobs=4
# https://pylint.readthedocs.io/en/latest/technical_reference/features.html
[MESSAGES CONTROL]
disable=all
enable=
# Basic checker
confusing-with-statement,
dangerous-default-value,
lost-exception,
return-in-init,
undefined-loop-variable,
# Class checker
assigning-non-slot,
bad-classmethod-argument,
bad-staticmethod-argument,
no-method-argument,
no-self-argument,
unexpected-special-method-signature,
# Miscellaneous checker
invalid-encoded-data,
# Newstyle checker
old-style-class,
# Refactoring checker
inconsistent-return-statements,
trailing-comma-tuple,
# String checker
bad-format-character,
bad-format-string,
bad-str-strip-call,
format-combined-specification,
missing-format-argument-key,
mixed-format-string,
too-few-format-args,
too-many-format-args,
truncated-format-string,
unused-format-string-argument,
# Typecheck checker
assignment-from-no-return,
no-value-for-parameter,
redundant-keyword-arg,
repeated-keyword,
too-many-function-args,
unexpected-keyword-arg,
# Variables checker
cell-var-from-loop,
redefined-outer-name,
useless-else-on-loop,
[REPORTS]
report=no
score=no