From d4578799e0c0d5dff345b0edfd927683cac3e67e Mon Sep 17 00:00:00 2001 From: Gui Castelao Date: Fri, 3 May 2024 16:39:53 -0600 Subject: [PATCH] Checking with ruff on 'E' rules --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 707e96a338..5307cd3848 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -73,6 +73,11 @@ indent-width = 4 target-version = "py38" [tool.ruff.lint] +fixable = ["ALL"] +preview = true +select = [ + "E", # pycodestyle + ] ignore = [ "B008", # function-call-in-default-argument "B024", # abstract-base-class-without-abstract-method