pylint: Ignore more lints
This commit is contained in:
parent
5f26c276ef
commit
ea885f426d
1 changed files with 33 additions and 12 deletions
|
@ -79,18 +79,39 @@ confidence=
|
||||||
# no Warning level messages displayed, use "--disable=all --enable=classes
|
# no Warning level messages displayed, use "--disable=all --enable=classes
|
||||||
# --disable=W".
|
# --disable=W".
|
||||||
disable=raw-checker-failed,
|
disable=raw-checker-failed,
|
||||||
bad-inline-option,
|
bad-inline-option,
|
||||||
locally-disabled,
|
locally-disabled,
|
||||||
file-ignored,
|
file-ignored,
|
||||||
suppressed-message,
|
suppressed-message,
|
||||||
useless-suppression,
|
useless-suppression,
|
||||||
deprecated-pragma,
|
deprecated-pragma,
|
||||||
use-symbolic-message-instead,
|
use-symbolic-message-instead,
|
||||||
missing-class-docstring,
|
missing-class-docstring,
|
||||||
missing-function-docstring,
|
missing-function-docstring,
|
||||||
missing-module-docstring,
|
missing-module-docstring,
|
||||||
invalid-name,
|
global-statement,
|
||||||
global-statement
|
blacklisted-name,
|
||||||
|
fixme,
|
||||||
|
input-builtin,
|
||||||
|
invalid-characters-in-docstring,
|
||||||
|
invalid-name,
|
||||||
|
invalid-str-codec,
|
||||||
|
line-too-long,
|
||||||
|
round-builtin,
|
||||||
|
too-few-public-methods,
|
||||||
|
too-many-ancestors,
|
||||||
|
too-many-arguments,
|
||||||
|
too-many-boolean-expressions,
|
||||||
|
too-many-branches,
|
||||||
|
too-many-instance-attributes,
|
||||||
|
too-many-lines,
|
||||||
|
too-many-locals,
|
||||||
|
too-many-nested-blocks,
|
||||||
|
too-many-public-methods,
|
||||||
|
too-many-return-statements,
|
||||||
|
too-many-statements,
|
||||||
|
wrong-spelling-in-comment,
|
||||||
|
wrong-spelling-in-docstring,
|
||||||
|
|
||||||
# Enable the message, report, category or checker with the given id(s). You can
|
# Enable the message, report, category or checker with the given id(s). You can
|
||||||
# either give multiple identifier separated by comma (,) or put this option
|
# either give multiple identifier separated by comma (,) or put this option
|
||||||
|
|
Loading…
Reference in a new issue