test: swap pylint config around to explicitly disable things
we haven't addressed many yet, but now we know what needs doing..
This commit is contained in:
parent
36808fdb60
commit
ac1f41842a
1 changed files with 52 additions and 11 deletions
63
.pylintrc
63
.pylintrc
|
@ -1,14 +1,55 @@
|
||||||
# -*- mode: conf; -*-
|
# -*- mode: conf; -*-
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=all
|
disable=fixme,
|
||||||
enable=
|
abstract-method,
|
||||||
empty-docstring,
|
anomalous-backslash-in-string,
|
||||||
inconsistent-return-statements,
|
arguments-differ,
|
||||||
no-else-return,
|
arguments-renamed,
|
||||||
redefined-argument-from-local,
|
assignment-from-no-return,
|
||||||
too-many-branches,
|
attribute-defined-outside-init,
|
||||||
too-many-instance-attributes,
|
bare-except,
|
||||||
too-many-return-statements,
|
broad-exception-caught,
|
||||||
unused-import,
|
consider-using-dict-comprehension,
|
||||||
unused-variable,
|
consider-using-dict-items,
|
||||||
|
consider-using-generator,
|
||||||
|
consider-using-get,
|
||||||
|
consider-using-set-comprehension,
|
||||||
|
dangerous-default-value,
|
||||||
|
deprecated-method,
|
||||||
|
duplicate-code,
|
||||||
|
implicit-str-concat,
|
||||||
|
import-outside-toplevel,
|
||||||
|
invalid-name,
|
||||||
|
isinstance-second-argument-not-valid-type,
|
||||||
|
keyword-arg-before-vararg,
|
||||||
|
missing-function-docstring,
|
||||||
|
missing-module-docstring,
|
||||||
|
no-else-raise,
|
||||||
|
no-member,
|
||||||
|
not-callable,
|
||||||
|
protected-access,
|
||||||
|
redefined-outer-name,
|
||||||
|
simplifiable-if-expression,
|
||||||
|
singleton-comparison,
|
||||||
|
super-init-not-called,
|
||||||
|
too-few-public-methods,
|
||||||
|
too-many-arguments,
|
||||||
|
too-many-lines,
|
||||||
|
too-many-locals,
|
||||||
|
too-many-nested-blocks,
|
||||||
|
too-many-positional-arguments,
|
||||||
|
too-many-public-methods,
|
||||||
|
too-many-statements,
|
||||||
|
ungrouped-imports,
|
||||||
|
unidiomatic-typecheck,
|
||||||
|
unnecessary-comprehension,
|
||||||
|
unnecessary-lambda,
|
||||||
|
unnecessary-lambda-assignment,
|
||||||
|
unspecified-encoding,
|
||||||
|
unused-argument,
|
||||||
|
unused-wildcard-import,
|
||||||
|
use-a-generator,
|
||||||
|
use-dict-literal,
|
||||||
|
wildcard-import,
|
||||||
|
wrong-import-order,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue