Files
virt-manager/.pylintrc
T

34 lines
1.4 KiB
INI
Raw Normal View History

2013-04-13 14: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).
2020-03-30 16:04:12 -04: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,useless-object-inheritance,consider-using-in,useless-return,assignment-from-none,chained-comparison,import-outside-toplevel
2018-03-12 16:44:43 -04:00
enable=fixme
2013-04-13 14:01:20 -04:00
2018-05-02 19:53:03 -04:00
[MASTER]
# Don't pickle any data for cross run comparison reports
persistent=no
2013-04-13 14:01:20 -04:00
[REPORTS]
reports=no
score=no
2013-04-13 14:01:20 -04:00
[FORMAT]
2018-05-02 19:53:03 -04:00
# Use 80 character line limit
2013-04-13 14:01:20 -04:00
max-line-length=80
[VARIABLES]
2018-05-02 19:53:03 -04: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 14:01:20 -04:00
2018-05-02 19:53:03 -04:00
# This is the standard argument regex, with two 'ignore' variations added
ignored-argument-names=_.*|^ignored_|^unused_|ignore.*|.*_ignore
2020-07-14 12:06:20 -04:00
# gettext buitins
additional-builtins=_,ngettext