forked from plastex/plastex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pylintrc
106 lines (102 loc) · 2.42 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[MASTER]
persistent=no
ignore=tests
extension-pkg-whitelist=lxml
[MESSAGES CONTROL]
disable=
abstract-method,
access-member-before-definition,
arguments-differ,
assigning-non-slot,
assignment-from-no-return,
assignment-from-none,
attribute-defined-outside-init,
bad-continuation,
bad-indentation,
bad-whitespace,
bare-except,
blacklisted-name,
broad-except,
chained-comparison,
comparison-with-itself,
consider-using-dict-comprehension,
consider-using-enumerate,
cyclic-import,
dangerous-default-value,
deprecated-method,
duplicate-key,
empty-docstring,
eval-used,
fixme,
function-redefined,
global-statement,
global-variable-undefined,
inconsistent-return-statements,
invalid-name,
keyword-arg-before-vararg,
locally-disabled,
logging-not-lazy,
line-too-long,
method-hidden,
missing-docstring,
missing-final-newline,
mixed-indentation,
multiple-imports,
multiple-statements,
no-classmethod-decorator,
no-else-return,
no-member,
no-method-argument,
no-self-use,
no-value-for-parameter,
non-parent-init-called,
not-an-iterable,
possibly-unused-variable,
protected-access,
redefined-argument-from-local,
redefined-builtin,
redefine-in-handler,
redefined-outer-name,
simplifiable-if-statement,
unexpected-keyword-arg,
self-cls-assignment,
super-init-not-called,
superfluous-parens,
too-few-public-methods,
too-many-ancestors,
too-many-arguments,
too-many-boolean-expressions,
too-many-branches,
too-many-instance-attributes,
too-many-function-args,
too-many-lines,
too-many-locals,
too-many-nested-blocks,
too-many-public-methods,
too-many-return-statements,
too-many-statements,
try-except-raise,
trailing-newlines,
trailing-whitespace,
undefined-loop-variable,
undefined-variable,
ungrouped-imports,
unidiomatic-typecheck,
unused-argument,
unused-variable,
unsubscriptable-object,
unsupported-assignment-operation,
unsupported-membership-test,
useless-else-on-loop,
useless-object-inheritance,
useless-return,
useless-super-delegation,
unused-wildcard-import,
wildcard-import,
wrong-import-order,
wrong-import-position,
import-outside-toplevel
[REPORTS]
reports=no
[SIMILARITIES]
min-similarity-lines=999