From 6d49f6e283e654edea93dd62f78ffe4ad68fcf42 Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:07:27 -0700 Subject: [PATCH] Chore: enable flake8-logging (LOG001/002/009/014/015) ruff rules Zero current violations. Only these five LOG codes are part of ruff 0.16's default rule set; the rest of the linter is opt-in. --- pyproject.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index dd8a81146..5bf2f0f88 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -202,6 +202,11 @@ extend-select = [ "ICN", # https://docs.astral.sh/ruff/rules/#flake8-import-conventions-icn "INP", # https://docs.astral.sh/ruff/rules/#flake8-no-pep420-inp "ISC", # https://docs.astral.sh/ruff/rules/#flake8-implicit-str-concat-isc + "LOG001", # https://docs.astral.sh/ruff/rules/#flake8-logging-log + "LOG002", # https://docs.astral.sh/ruff/rules/#flake8-logging-log + "LOG009", # https://docs.astral.sh/ruff/rules/#flake8-logging-log + "LOG014", # https://docs.astral.sh/ruff/rules/#flake8-logging-log + "LOG015", # https://docs.astral.sh/ruff/rules/#flake8-logging-log "PERF101", # https://docs.astral.sh/ruff/rules/#perflint-perf "PERF102", # https://docs.astral.sh/ruff/rules/#perflint-perf "PERF402", # https://docs.astral.sh/ruff/rules/#perflint-perf