Created
June 18, 2021 15:13
-
-
Save Seanny123/ae47c0184da93101640c87ead510590a to your computer and use it in GitHub Desktop.
Conservative list of Pylint warning to ignore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[tool.pylint.messages_control] | |
disable = [ | |
"arguments-differ", | |
"attribute-defined-outside-init", | |
"bad-continuation", | |
"blacklisted-name", | |
"duplicate-code", | |
"fixme", | |
"import-error", | |
"no-member", | |
"no-name-in-module", | |
"no-self-use", | |
"protected-access", | |
"stop-iteration-return", | |
"too-few-public-methods", | |
"too-many-arguments", | |
"too-many-branches", | |
"too-many-instance-attributes", | |
"too-many-lines", | |
"too-many-locals", | |
"too-many-return-statements", | |
"too-many-statements", | |
"abstract-method", | |
"chained-comparison", | |
"eval-used", | |
"exec-used", | |
"expression-not-assigned", | |
"global-statement", | |
"missing-docstring", | |
"redefined-argument-from-local", | |
"redefined-outer-name", | |
"reimported", | |
"too-many-ancestors", | |
"unexpected-special-method-signature", | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment