From a91a2ab7e6361928cc9703762dbb0f9e4fcdf611 Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:07:44 -0700 Subject: [PATCH] Chore: enable pep8-naming N999 ruff rule Zero current violations. Only N999 (invalid-module-name) is part of ruff 0.16's default rule set; the rest of pep8-naming is opt-in. --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 5bf2f0f88..7298d048c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -207,6 +207,7 @@ extend-select = [ "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 + "N999", # https://docs.astral.sh/ruff/rules/#pep8-naming-n "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