OPT add linting workflow #3

Merged
peter merged 5 commits from opt/add_lint_workflow into main 2026-01-31 17:44:27 +01:00
Showing only changes of commit b573128b15 - Show all commits

View File

@ -29,3 +29,15 @@ build-backend = "setuptools.build_meta"
[tool.setuptools] [tool.setuptools]
packages = ["src"] packages = ["src"]
[tool.ruff]
line-length = 100
target-version = "py314"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = []
[tool.ruff.format]
quote-style = "double"
indent-style = "space"