InvenTree/setup.cfg

20 lines
511 B
INI
Raw Normal View History

2017-04-10 20:55:25 +00:00
[flake8]
ignore =
# - W605 - invalid escape sequence
2020-06-11 09:46:36 +00:00
W605,
2017-04-10 20:55:25 +00:00
# - E501 - line too long (82 characters)
2022-05-20 15:45:04 +00:00
E501,
# - E722 - do not use bare except
E722,
2019-06-13 12:16:27 +00:00
# - C901 - function is too complex
C901,
# - B009 - Do not call getattr with a constant attribute value
B009
exclude = .git,__pycache__,*/migrations/*,*/lib/*,*/bin/*,*/media/*,*/static/*,InvenTree/plugins/*
2022-05-15 23:12:19 +00:00
[isort]
src_paths=InvenTree
skip_glob =*/migrations/*.py
known_django=django
sections=FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER