[MASTER]
#ignore=packagename
#ignore=module.py
[MESSAGES CONTROL]
# The design check gives mostly useless advice.
# We care more about things that cause problems than formatting.
# C0103: invalid name
# C0111: missing doc string
# C0112: empty doc string
# E1101: class has no member
# E1103: class has no member (couldn't infer types)
# R0201: method could be a function
# R0801: similar lines
# W0141: used range
# W0142: * or ** arguments
# W0201: attribute defined outside of __init__
# W0232: missing __init__
# W0603: global statement
# W0613: unused argument
# W0703: except Exception:
disable=design,format,C0103,C0111,C0112,E1101,E1103,R0201,R0801,W0141,W0142,W0201,W0232,W0603,W0613,W0703
[REPORTS]
include-ids=yes
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