# Pylint configuration file

[MASTER]

# Specify a score threshold to be exceeded before program exits with error.
score=no


[MESSAGES CONTROL]

# Disable specific messages
#disable=all
#enable=unused-import,unused-variable
; disable=C0302,R0902,R0913,R0917,C0116,W0212,R0914,R0904,R0903,E0202,W0718


[BASIC]

# Maximum line length.
max-line-length=100


[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=etcdrpc
