16 lines
382 B
TOML
16 lines
382 B
TOML
[project]
|
|
name = "radeln"
|
|
version = "0.1.0"
|
|
description = "Radeln ohne Alter — Fahrten-Koordination (Demo)"
|
|
requires-python = ">=3.12"
|
|
|
|
[tool.ruff]
|
|
line-length = 100
|
|
target-version = "py312"
|
|
|
|
[tool.ruff.lint]
|
|
# pycodestyle, pyflakes, isort, pyupgrade, bugbear, flake8-django
|
|
select = ["E", "F", "I", "UP", "B", "DJ"]
|
|
|
|
[tool.ruff.lint.per-file-ignores]
|
|
"*/migrations/*" = ["E501"]
|