[MASTER]

# --go-faster, use multiple processes to speed up Pylint
jobs=4


[MESSAGES CONTROL]

# Errors and warnings with some filtered:
# W0012(bad-option-value)
# W0212(protected-access)
# W0221(arguments-differ)
# W0223(abstract-method)
# W0231(super-init-not-called)
# W0511(fixme)
# W0603(global-statement)
# W0611(unused-import)
# W0613(unused-argument)
# W0621(redefined-outer-name)
# W0622(redefined-builtin)
# W0631(undefined-loop-variable)
# W0703(broad-except)
# W1514(unspecified-encoding)

disable=C, F, I, R, W0012, W0212, W0221, W0223, W0231, W0511, W0603, W0611, W0613, W0621, W0622, W0631, W0703, W1514


[REPORTS]

# Set the output format. Available formats are text, parseable, colorized, msvs
output-format=parseable

# Just the errors please, no full report
reports=no
