gaby/setup.cfg

42 lignes
777 B
INI

[flake8]
exclude =
.git,
.tox,
venv,
venv*,
basket,
*/migrations/*,
*/static/*,
# assets & compilation
assets,
build,
dist,
staticfiles,
node_modules
max-line-length = 80
# isort related: https://github.com/timothycrosley/isort/wiki/isort-Settings[
[isort]
line_length = 79
known_first_party = gaby
multi_line_output = 3
default_section = THIRDPARTY
known_django = django
sections = FUTURE,STDLIB,DJANGO,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
skip_glob = **/migrations/*.py,venv*,staticfiles
include_trailing_comma = True
[coverage:run]
branch = True
include = ./*
omit =
*/migrations/*,
*/urls.py,
*tests*,
*/settings/*,
*/fixtures/*,
*/wsgi.py
[coverage:report]
show_missing = True
skip_covered = True