infra: explicitly disable checks for pylint
finally tackled enough we can assume checks *should* run except for those we opt out of. and those can be cleaned up too hopefully but i'm out of gas for the moment
This commit is contained in:
parent
9075159d0d
commit
faa12005fb
1 changed files with 11 additions and 32 deletions
43
.pylintrc
43
.pylintrc
|
@ -1,35 +1,14 @@
|
||||||
# -*- mode: conf; -*-
|
# -*- mode: conf; -*-
|
||||||
|
|
||||||
[MESSAGES CONTROL]
|
[MESSAGES CONTROL]
|
||||||
disable=all
|
disable=
|
||||||
enable=abstract-method,
|
attribute-defined-outside-init,
|
||||||
anomalous-backslash-in-string,
|
fixme,
|
||||||
assignment-from-no-return,
|
import-outside-toplevel,
|
||||||
assignment-from-none,
|
too-many-arguments,
|
||||||
bare-except,
|
too-many-branches,
|
||||||
broad-exception-caught,
|
too-many-instance-attributes,
|
||||||
consider-using-f-string,
|
too-many-lines,
|
||||||
consider-using-dict-comprehension,
|
too-many-locals,
|
||||||
consider-using-set-comprehension,
|
too-many-positional-arguments,
|
||||||
cyclic-import,
|
too-many-public-methods,
|
||||||
dangerous-default-value,
|
|
||||||
disallowed-name,
|
|
||||||
duplicate-code,
|
|
||||||
empty-docstring,
|
|
||||||
inconsistent-return-statements,
|
|
||||||
invalid-name,
|
|
||||||
line-too-long,
|
|
||||||
missing-function-docstring,
|
|
||||||
missing-module-docstring,
|
|
||||||
no-else-return,
|
|
||||||
no-self-argument,
|
|
||||||
no-member,
|
|
||||||
possibly-used-before-assignment,
|
|
||||||
redefined-argument-from-local,
|
|
||||||
redefined-outer-name,
|
|
||||||
too-few-public-methods,
|
|
||||||
trailing-whitespace,
|
|
||||||
unspecified-encoding,
|
|
||||||
unused-argument,
|
|
||||||
unused-import,
|
|
||||||
wrong-import-order,
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue