pylint: Ignore more lints
This commit is contained in:
parent
5f26c276ef
commit
ea885f426d
1 changed files with 33 additions and 12 deletions
|
@ -89,8 +89,29 @@ disable=raw-checker-failed,
|
||||||
missing-class-docstring,
|
missing-class-docstring,
|
||||||
missing-function-docstring,
|
missing-function-docstring,
|
||||||
missing-module-docstring,
|
missing-module-docstring,
|
||||||
|
global-statement,
|
||||||
|
blacklisted-name,
|
||||||
|
fixme,
|
||||||
|
input-builtin,
|
||||||
|
invalid-characters-in-docstring,
|
||||||
invalid-name,
|
invalid-name,
|
||||||
global-statement
|
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