2013-04-13 22:01:20 +04:00
[MESSAGES CONTROL]
# Disable the message, report, category or checker with the given id(s). You
# can either give multiple identifier separated by comma (,) or put this option
# multiple time (only on the command line, not in the configuration file where
# it should appear only once).
2018-03-02 11:01:22 +03:00
disable = Design,Similarities,invalid-name,missing-docstring,line-too-long,too-many-lines,superfluous-parens,bad-whitespace,locally-disabled,no-self-use,unnecessary-lambda,star-args,fixme,global-statement,bare-except,anomalous-backslash-in-string,broad-except,cyclic-import,bad-continuation,locally-enabled,unidiomatic-typecheck,redefined-variable-type,bad-option-value,wrong-import-position,consider-using-ternary,no-else-return,len-as-condition,inconsistent-return-statements
2018-03-12 23:44:43 +03:00
enable = fixme
2013-04-13 22:01:20 +04:00
2018-05-03 02:53:03 +03:00
[MASTER]
# Don't pickle any data for cross run comparison reports
persistent = no
2013-04-13 22:01:20 +04:00
[REPORTS]
reports = no
2017-06-15 15:18:26 +03:00
score = no
2013-04-13 22:01:20 +04:00
[FORMAT]
2018-05-03 02:53:03 +03:00
# Use 80 character line limit
2013-04-13 22:01:20 +04:00
max-line-length = 80
[VARIABLES]
2018-05-03 02:53:03 +03:00
# This is the standard 'dummy' regex, with two 'ignore' variations added
dummy-variables-rgx = _+$|(_[a-zA-Z0-9_]*[a-zA-Z0-9]+?$)|dummy|^ignored_|^unused_|ignore.*|.*_ignore
2013-04-13 22:01:20 +04:00
2018-05-03 02:53:03 +03:00
# This is the standard argument regex, with two 'ignore' variations added
ignored-argument-names = _.*|^ignored_|^unused_|ignore.*|.*_ignore
2017-06-15 15:18:26 +03:00
2018-05-03 02:53:03 +03:00
# gettext function _() is built in
2013-04-13 22:01:20 +04:00
additional-builtins = _