From e02cd87b3eeabddd35c88b36d6a59273c6b834d8 Mon Sep 17 00:00:00 2001 From: "Lev S. Bishop" <18673315+levbishop@users.noreply.github.com> Date: Sun, 25 Jun 2023 19:54:10 -0400 Subject: [PATCH 1/3] Ruff enable a few more categories --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index f7f8ec4c9286..591cd7bff3c0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -36,6 +36,10 @@ select = [ "F632", "F634", "F823", + "G", + "PYI", + "Q", + "T10", ] [tool.pylint.main] From 751ee3cd2b15a26c14307563ebdc70e7ab235dcb Mon Sep 17 00:00:00 2001 From: "Lev S. Bishop" <18673315+levbishop@users.noreply.github.com> Date: Mon, 26 Jun 2023 08:17:14 -0400 Subject: [PATCH 2/3] remove PYI and Q --- pyproject.toml | 2 -- 1 file changed, 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 591cd7bff3c0..bf7c47af3c24 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,8 +37,6 @@ select = [ "F634", "F823", "G", - "PYI", - "Q", "T10", ] From 2d48050423b54a4bc5ed06b69eca2cf41fd19e12 Mon Sep 17 00:00:00 2001 From: Luciano Bello Date: Sun, 24 Mar 2024 21:46:08 +0100 Subject: [PATCH 3/3] Update pyproject.toml --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 51253e3fcbc5..8cd6360f97c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -170,6 +170,7 @@ select = [ "F631", # assert-tuple "F632", # is-literal "F634", # if-tuple + "F823", # undefined-local "G", # flake8-logging-format "T10", # category: flake8-debugger ]