-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpylintrc
More file actions
26 lines (21 loc) · 803 Bytes
/
pylintrc
File metadata and controls
26 lines (21 loc) · 803 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
[MASTER]
ignore=dpipe_configs,torch,layers
extension-pkg-whitelist=numpy
[DESIGN]
max-line-length=120
# max-attributes=20
# max-locals=20
# max-args=20
# max-module-lines=1500
# max-statements=100
# max-nested-blocks=10
[TYPECHECK]
ignored-modules=numpy,cv2
[MESSAGE CONTROL]
disable=missing-docstring
# disable=no-member, no-value-for-parameter, no-self-use, too-many-locals, too-few-public-methods, too-many-public-methods, too-many-branches, unsubscriptable-object, redefined-variable-type, too-many-star-expressions, duplicate-code, not-context-manager, too-many-lines, global-statement, locally-disabled, wrong-import-position, invalid-sequence-index, redundant-keyword-arg, bad-super-call
[BASIC]
# class-rgx=[A-Z_][a-zA-Z0-9_]+$
good-names=x,xs,y,ys,i,o,lr,f,do,df,rm
[MISCELLANEOUS]
notes=