Configure linting and setup deps via uv

This commit is contained in:
2025-05-14 21:41:08 +02:00
parent 81842e6d19
commit 05a2506b1e
2 changed files with 195 additions and 0 deletions

View File

@@ -31,3 +31,13 @@ build-backend = "setuptools.build_meta"
[tool.black]
line-length = 79
target-version = ["py310"]
[tool.ruff.lint]
select = ["F", "B", "I"]
fixable = ["I"]
[dependency-groups]
dev = [
"black>=25.1.0",
"ruff>=0.11.9",
]