From 463a08a2f6843d7f3390545f76af99a58d648667 Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Fri, 6 Mar 2026 09:35:46 -0500 Subject: [PATCH] Update ruff `extend-ignore` key to `ignore` Deprecated, and now interchangeable with ignore. Ref: https://docs.astral.sh/ruff/settings/#lint_extend-ignore Signed-off-by: Stefan VanBuren --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 766338b..878f474 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -152,7 +152,7 @@ extend-select = [ ] # Document reasons for ignoring specific linting errors -extend-ignore = [ +ignore = [ # Not applicable "AIR", # Dangerous false positives https://github.com/astral-sh/ruff/issues/4845