flask-namedays/pyproject.toml
2023-12-14 18:57:31 +02:00

17 lines
253 B
TOML

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