flask-namedays/pyproject.toml
2023-12-12 11:41:48 +02:00

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