Files
mandelnnadia/pyproject.toml
Mandel Dashboard 95927483bf initial commit
2026-02-15 23:27:26 +01:00

31 lines
485 B
TOML

[tool.black]
target_version = ['py36']
exclude = '''
(
migrations/*
| mandelnnadia/main.py
)
'''
[tool.ruff.lint.isort]
known-first-party = ["mandelnnadia"]
section-order = [
"future",
"standard-library",
"third-party",
"wagtail",
"oscar",
"oscarapi",
"oscarextra",
"ocyan",
"first-party",
"local-folder"
]
[tool.ruff.lint.isort.sections]
wagtail = ["wagtail", "wagtail_*"]
oscar = ["oscar"]
oscarapi = ["oscarapi"]
oscarextra = ["oscar_*"]
ocyan = ["ocyan"]