mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 12:06:44 +00:00
Add isort
This commit is contained in:
parent
432fd9b8e6
commit
af6eac8cc9
@ -36,6 +36,7 @@ flake8==3.8.3 # PEP checking
|
|||||||
gunicorn>=20.1.0 # Gunicorn web server
|
gunicorn>=20.1.0 # Gunicorn web server
|
||||||
importlib_metadata # Backport for importlib.metadata
|
importlib_metadata # Backport for importlib.metadata
|
||||||
inventree # Install the latest version of the InvenTree API python library
|
inventree # Install the latest version of the InvenTree API python library
|
||||||
|
isort==5.10.1 # DEV: python import sorting
|
||||||
markdown==3.3.4 # Force particular version of markdown
|
markdown==3.3.4 # Force particular version of markdown
|
||||||
pep8-naming==0.11.1 # PEP naming convention extension
|
pep8-naming==0.11.1 # PEP naming convention extension
|
||||||
pillow==9.0.1 # Image manipulation
|
pillow==9.0.1 # Image manipulation
|
||||||
|
@ -20,3 +20,11 @@ max-complexity = 20
|
|||||||
|
|
||||||
[coverage:run]
|
[coverage:run]
|
||||||
source = ./InvenTree
|
source = ./InvenTree
|
||||||
|
|
||||||
|
[isort]
|
||||||
|
src_paths=InvenTree
|
||||||
|
skip_glob =*/migrations/*.py
|
||||||
|
known_django=django
|
||||||
|
import_heading_firstparty=InvenTree imports
|
||||||
|
import_heading_thirdparty=Third-Party imports
|
||||||
|
sections=FUTURE, STDLIB, DJANGO, THIRDPARTY, FIRSTPARTY, LOCALFOLDER
|
||||||
|
Loading…
x
Reference in New Issue
Block a user