authens/setup.cfg
2021-05-23 13:18:46 +02:00

18 lines
396 B
INI

[flake8]
exclude = migrations
max-line-length = 88
ignore =
# whitespace before ':' (not PEP8-compliant for slicing)
E203,
# lambda expression
E731,
# line break before binary operator (not PEP8-compliant)
W503
[isort]
profile = black
combine_as_imports = true
known_django = django
known_first_party = authens,tests
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER