1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
[flake8]
max_line_length = 120
per-file-ignores =
# E402 module level import not at top of file
annotations: E402
# See https://github.com/psf/black/issues/315
extend-ignore = E203
[pylint.FORMAT]
max-line-length = 120
[pylint]
# These are the default disables but for some reason we seem to loose them
# due to the above statement (huh?). So redefine them.
disable = invalid-name,
missing-module-docstring,
missing-class-docstring,
missing-function-docstring,
wrong-import-position,
raw-checker-failed,
bad-inline-option,
locally-disabled,
file-ignored,
suppressed-message,
useless-suppression,
deprecated-pragma,
use-symbolic-message-instead,
too-many-instance-attributes,
too-many-arguments,
too-many-locals,
too-many-statements,
redefined-outer-name,
# End of default disables
similarities,
too-many-branches,
too-many-return-statements,
too-few-public-methods,
consider-using-f-string,
consider-using-with,
too-many-nested-blocks,
too-many-lines
|