18 lines
271 B
TOML
18 lines
271 B
TOML
[tool.black]
|
|
line-length = 120
|
|
target-version = ['py311']
|
|
include = '\.pyi?$'
|
|
extend-exclude = '''(
|
|
migrations/*
|
|
| .git/*
|
|
| media/*
|
|
)'''
|
|
workers = 4
|
|
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 120
|
|
skip = ["venv", "templates", ".git"]
|
|
multi_line_output = 3
|