forked from aiiie/cram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pylintrc
41 lines (34 loc) · 965 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
[MESSAGES CONTROL]
# C0330: bad continuation
# The design check gives mostly useless advice.
# R0201: method could be a function
# W0123: eval used
# W0141: used range
# W0142: * or ** arguments
# W0201: attribute defined outside of __init__
# W0640: unreliable closure/loop variable checking
disable=C0330,design,R0201,W0123,W0141,W0142,W0201,W0640
[REPORTS]
reports=no
[TYPECHECK]
ignored-classes=
generated-members=
[BASIC]
const-rgx=(([a-zA-Z_][a-zA-Z0-9_]{2,30})|(__[a-z0-9_]{2,30}__))$
class-rgx=[a-zA-Z_][a-zA-Z0-9]{2,30}$
function-rgx=[a-z_][a-z0-9_]{2,30}$
method-rgx=[a-z_][a-z0-9_]{2,30}$
attr-rgx=[a-z_][a-z0-9_]{0,30}$
argument-rgx=[a-z_][a-z0-9_]{0,30}$
variable-rgx=[a-z_][a-z0-9_]{0,30}$
inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
[CLASSES]
ignore-iface-methods=
defining-attr-methods=__init__,__new__
[IMPORTS]
deprecated-modules=regsub,TERMIOS,Bastion,rexec
[FORMAT]
max-line-length=79
max-module-lines=5000
[MISCELLANEOUS]
notes=FIXME,XXX,TODO