Skip to content

Instantly share code, notes, and snippets.

@Seanny123
Created June 18, 2021 15:13
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Seanny123/ae47c0184da93101640c87ead510590a to your computer and use it in GitHub Desktop.
Save Seanny123/ae47c0184da93101640c87ead510590a to your computer and use it in GitHub Desktop.
Conservative list of Pylint warning to ignore
[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