From 1c8b7227906c733be0578e0bbc9327f3ad500276 Mon Sep 17 00:00:00 2001 From: Moritz Gmeiner Date: Mon, 21 Oct 2024 03:52:26 +0200 Subject: [PATCH] updated ruff lint sections --- pyproject.toml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 1689c69..79c2116 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,8 +19,11 @@ combine_as_imports = true [tool.ruff] line-length = 100 -select = ["E", "F"] target-version = "py311" -[tool.ruff.per-file-ignores] +[tool.ruff.lint] +select = ["E", "F"] + + +[tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401"]