42 lines
965 B
INI
42 lines
965 B
INI
[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
|