mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
abee2cee88
* fix list comps * mopre comp fixes * reduce computing cost on any() calls * add bugbear * check for clean imports * only allow limited relative imports * fix notification method lookup * fix notification method assigement * rewrite assigment * fix upstream changes to new style * fix upstream change to new coding style
40 lines
1.1 KiB
INI
40 lines
1.1 KiB
INI
[flake8]
|
|
ignore =
|
|
# - W605 - invalid escape sequence
|
|
W605,
|
|
# - E501 - line too long (82 characters)
|
|
E501,
|
|
# - E722 - do not use bare except
|
|
E722,
|
|
# - C901 - function is too complex
|
|
C901,
|
|
# - N802 - function name should be lowercase
|
|
# TODO (In the future, we should conform to this!)
|
|
N802,
|
|
# - N806 - variable should be lowercase
|
|
N806,
|
|
# - N812 - lowercase imported as non-lowercase
|
|
N812,
|
|
# - D202 - No blank lines allowed after function docstring
|
|
D202,
|
|
# - D415 - First line should end with a period, question mark, or exclamation point
|
|
D415,
|
|
# - B009 - Do not call getattr with a constant attribute value
|
|
B009
|
|
exclude = .git,__pycache__,*/migrations/*,*/lib/*,*/bin/*,*/media/*,*/static/*,InvenTree/plugins/*
|
|
per-file-ignores =
|
|
# Do not enforce docstring on __init__
|
|
__init__.py: D104
|
|
max-complexity = 20
|
|
docstring-convention=google
|
|
ban-relative-imports = parents
|
|
|
|
[coverage:run]
|
|
source = ./InvenTree
|
|
|
|
[isort]
|
|
src_paths=InvenTree
|
|
skip_glob =*/migrations/*.py
|
|
known_django=django
|
|
sections=FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
|