# Use pylint --generate-rcfile for a full example [MASTER] [MESSAGES CONTROL] disable=global-statement,missing-docstring,bad-builtin [REPORTS] # Set the output format. Available formats are text, parseable, colorized, msvs # (visual studio) and html. You can also give a reporter class, eg # mypackage.mymodule.MyReporterClass. output-format=colorized # Tells whether to display a full report or only the messages reports=no [BASIC] #attr-rgx = [a-z_][a-z0-9_]{0,30}$ variable-rgx = [a-z_][a-z0-9_]{0,30}$ argument-rgx = [a-z_][a-z0-9_]{0,30}$ #method-rgx = [a-z_][a-z0-9_]{2,30}$ #function-rgx = [a-z_][a-z0-9_]{2,30}$ const-rgx = (([A-Z_][A-Z0-9_]*)|(__.*__)|([a-z_][a-z0-9_]{2,30}))$ [FORMAT] max-line-length = 80 max-module-lines = 10000 [DESIGN] max-branches = 15