From 7d3717cb996b26ef646e78a83aad86f260f6e8ed Mon Sep 17 00:00:00 2001 From: mo8it Date: Tue, 5 Mar 2024 15:56:00 +0100 Subject: [PATCH] Update ruff section names --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3bca7ca..e16ab72 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ setuptools = "^69.1" [tool.ruff] line-length = 120 -select = [ +lint.select = [ "E", "W", "F", @@ -47,7 +47,7 @@ select = [ "PERF", "RUF", ] -ignore = [ +lint.ignore = [ "E501", "E711", "E712", @@ -62,7 +62,7 @@ ignore = [ "RUF012", ] -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "__init__.py" = ["I"] [tool.isort]