From a05e66b4abfb80729dc8a1caecdba08bfe83a0e3 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Fri, 11 Oct 2024 11:31:16 +0100 Subject: [PATCH] pyproject: Update ruff config to new layout --- pyproject.toml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7bdda44..e0cb38b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,11 +26,13 @@ typeCheckingMode = "strict" venvPath = "." venv = ".venv" -[tool.ruff] +[tool.ruff.lint] select = ["E", "F", "I"] ignore = [] + +[tool.ruff] line-length = 88 target-version = "py38" -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401"]