-
Notifications
You must be signed in to change notification settings - Fork 3
/
pylintrc
31 lines (22 loc) · 967 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
[MASTER]
# A comma-separated list of package or module names from where C extensions may
# be loaded. Extensions are loading into the active Python interpreter and may
# run arbitrary code
extension-pkg-whitelist=torch
[DESIGN]
# Maximum number of parents for a class (see R0901).
# max-parents=7
max-parents=25
[TYPECHECK]
# List of module names for which member attributes should not be checked
# (useful for modules/projects where namespaces are manipulated during runtime
# and thus existing member attributes cannot be deduced by static analysis. It
# supports qualified module names, as well as Unix pattern matching.
ignored-modules=torch
# List of decorators that change the signature of a decorated function.
signature-mutators=dltb.base.reuse.reusable
[MISCELLANEOUS]
# Regular expression of note tags to take in consideration.
# Special pattern required for pylint >=2.13.0 to see notes like
# "FIXME[bug]" and "FIXME[todo]"
notes-rgx=FIXME\[.*\]