-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pylintrc
More file actions
29 lines (27 loc) · 727 Bytes
/
Copy path.pylintrc
File metadata and controls
29 lines (27 loc) · 727 Bytes
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
[TYPECHECK]
# List of members which are set dynamically and missed by pylint inference
# system, and so shouldn't trigger E1101 when accessed. Python regular
# expressions are accepted.
generated-members=numpy.*,torch.*
disable=
protected-access,
no-else-return,
raise-missing-from,
invalid-name,
duplicate-code,
import-outside-toplevel,
missing-docstring,
bad-continuation,
locally-disabled,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-local-variables,
too-many-locals,
too-many-branches,
too-many-statements,
too-many-return-statements,
redefined-builtin,
redefined-outer-name,
line-too-long,
fixme,