-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpylintrc
42 lines (40 loc) · 947 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
[SETTINGS]
max-line-length=140
generated-members=torch.*
disable =
missing-docstring,
too-few-public-methods,
too-many-locals,
too-many-arguments,
too-many-branches,
too-many-statements,
too-many-instance-attributes,
invalid-name,
arguments-differ,
raise-missing-from,
consider-using-f-string,
no-member,
duplicate-code,
unused-argument,
inconsistent-return-statements,
redefined-outer-name,
redefined-builtin,
unspecified-encoding,
attribute-defined-outside-init,
broad-exception-caught,
unidiomatic-typecheck,
import-error,
fixme,
super-init-not-called,
eval-used,
too-many-return-statements,
not-an-iterable,
unknown-option-value,
dangerous-default-value,
deprecated-module,
wildcard-import,
unused-wildcard-import,
not-callable,
abstract-method,
protected-access,
possibly-used-before-assignment,