From bb0cbe8f07de2b893cc966b27323696db10722a0 Mon Sep 17 00:00:00 2001 From: Mathias Hauser Date: Thu, 7 Mar 2024 13:04:05 +0100 Subject: [PATCH] ruff settings: move 'ignore' to 'lint' section --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c9268902..073b9777 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -64,6 +64,8 @@ exclude = [ ".eggs", "doc", ] + +[tool.ruff.lint] # E402: module level import not at top of file # E501: line too long - let ruff worry about that ignore = [ @@ -72,7 +74,6 @@ ignore = [ "B018", "B015", ] -[tool.ruff.lint] select = [ # Pyflakes "F",