mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
2897c6704d
mostly for speed improvements
19 lines
523 B
TOML
19 lines
523 B
TOML
|
|
[tool.ruff]
|
|
exclude=[".git","__pycache__","dist","build","test.py","tests", "venv","env",".venv",".env"]
|
|
|
|
[tool.ruff.lint]
|
|
select = ["A", "B", "C4", "D", "DJ", "LOG", "N", "I","S"]
|
|
ignore = ["N999", ]
|
|
|
|
[tool.ruff.lint.pydocstyle]
|
|
convention = "google"
|
|
|
|
[tool.ruff.lint.isort]
|
|
combine-as-imports = true
|
|
section-order = ["future", "standard-library", "django", "third-party", "first-party", "local-folder" ]
|
|
known-first-party = ["src", "plugin", "InvenTree", "common"]
|
|
|
|
[tool.ruff.lint.isort.sections]
|
|
"django" = ["django"]
|