-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pylintrc
92 lines (91 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
[MASTER]
good-names = id
disable=
# Disable errors handled by mypy
abstract-class-instantiated,
arguments-differ,
assigning-non-slot,
assignment-from-no-return,
assignment-from-none,
bad-exception-cause,
bad-format-character,
bad-reversed-sequence,
bad-super-call,
bad-thread-instantiation,
catching-non-exception,
comparison-with-callable,
deprecated-class,
dict-iter-missing-items,
format-combined-specification,
global-variable-undefined,
import-error,
inconsistent-mro,
inherit-non-class,
init-is-generator,
invalid-class-object,
invalid-enum-extension,
invalid-envvar-value,
invalid-format-returned,
invalid-hash-returned,
invalid-metaclass,
invalid-overridden-method,
invalid-repr-returned,
invalid-sequence-index,
invalid-slice-index,
invalid-slots-object,
invalid-slots,
invalid-star-assignment-target,
invalid-str-returned,
invalid-unary-operand-type,
invalid-unicode-codec,
isinstance-second-argument-not-valid-type,
method-hidden,
misplaced-format-function,
missing-format-argument-key,
missing-format-attribute,
missing-kwoa,
no-member,
no-value-for-parameter,
non-iterator-returned,
non-str-assignment-to-dunder-name,
nonlocal-and-global,
not-a-mapping,
not-an-iterable,
not-async-context-manager,
not-callable,
not-context-manager,
overridden-final-method,
raising-bad-type,
raising-non-exception,
redundant-keyword-arg,
relative-beyond-top-level,
self-cls-assignment,
signature-differs,
star-needs-assignment-target,
subclassed-final-class,
super-without-brackets,
too-many-function-args,
typevar-double-variance,
typevar-name-mismatch,
unbalanced-dict-unpacking,
unbalanced-tuple-unpacking,
unexpected-keyword-arg,
unhashable-member,
unpacking-non-sequence,
unsubscriptable-object,
unsupported-assignment-operation,
unsupported-binary-operation,
unsupported-delete-operation,
unsupported-membership-test,
used-before-assignment,
using-final-decorator-in-unsupported-version,
wrong-exception-operation,
# Disable other noise
missing-class-docstring,
too-few-public-methods,
too-many-instance-attributes,
too-many-arguments,
too-many-public-methods,
too-many-return-statements,
duplicate-code,
invalid-name