31 lines
503 B
TOML
31 lines
503 B
TOML
[tool.black]
|
|
target_version = ['py36']
|
|
exclude = '''
|
|
(
|
|
migrations/*
|
|
| bootok_20260222035346/main.py
|
|
)
|
|
'''
|
|
|
|
[tool.ruff.lint.isort]
|
|
known-first-party = ["bootok_20260222035346"]
|
|
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"]
|