From b6bd41772aeec675b3589a735ce542f9a28f0956 Mon Sep 17 00:00:00 2001 From: Souyama Date: Thu, 8 Jan 2026 00:30:46 +0530 Subject: [PATCH] Ruff cover all logging issues --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 951c2c978..34d4e7055 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ lint.select = [ # The "F" series in Ruff stands for "Pyflakes" rules, which catch various Python syntax errors and undefined names. # See all rules here: https://docs.astral.sh/ruff/rules/#pyflakes-f "F", + "G" # logging rules ] lint.ignore = ["E501", "E722", "E731", "E712", "E402", "E741"]