pyproject: Update ruff config to new layout

This commit is contained in:
David Soria Parra
2024-10-11 11:31:16 +01:00
parent 8299cd0055
commit a05e66b4ab

View File

@@ -26,11 +26,13 @@ typeCheckingMode = "strict"
venvPath = "." venvPath = "."
venv = ".venv" venv = ".venv"
[tool.ruff] [tool.ruff.lint]
select = ["E", "F", "I"] select = ["E", "F", "I"]
ignore = [] ignore = []
[tool.ruff]
line-length = 88 line-length = 88
target-version = "py38" target-version = "py38"
[tool.ruff.per-file-ignores] [tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"] "__init__.py" = ["F401"]