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
|
[isort]
profile = black
[flake8]
max-line-length = 88
extend-ignore = E203
[pylint]
max-line-length = 88
[pylint.'MESSAGES CONTROL']
disable =
abstract-method,
consider-using-f-string,
consider-using-with,
too-few-public-methods,
too-many-arguments,
too-many-branches,
too-many-function-args,
too-many-instance-attributes,
too-many-public-methods,
too-many-positional-arguments,
cyclic-import
[pylint.'SIMILARITIES']
min-similarity-lines = 40
[bandit]
exclude = tests
skips = B404
|