From 6f843bda8df391424db78dc381a4821c7f2c7cf2 Mon Sep 17 00:00:00 2001 From: stumpylog <797416+stumpylog@users.noreply.github.com> Date: Thu, 27 Aug 2026 10:09:20 -0700 Subject: [PATCH] Chore: enable flake8-2020 (YTT) ruff rules Zero current violations. Full category (10/10 codes are all part of ruff 0.16's default rule set already, so there's no non-default subset to defer). --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index f41c32712..6c5f1a9fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -245,6 +245,7 @@ extend-select = [ "TID", # https://docs.astral.sh/ruff/rules/#flake8-tidy-imports-tid "UP", # https://docs.astral.sh/ruff/rules/#pyupgrade-up "W", # https://docs.astral.sh/ruff/rules/#pycodestyle-e-w + "YTT", # https://docs.astral.sh/ruff/rules/#flake8-2020-ytt ] ignore = [ "DJ001",