authens/setup.cfg

18 lines
396 B
INI
Raw Permalink Normal View History

2020-06-13 17:19:08 +02:00
[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
2021-05-23 13:18:46 +02:00
combine_as_imports = true
2020-06-13 17:19:08 +02:00
known_django = django
2020-06-13 20:41:45 +02:00
known_first_party = authens,tests
2021-05-22 22:27:38 +02:00
sections = FUTURE,STDLIB,THIRDPARTY,DJANGO,FIRSTPARTY,LOCALFOLDER