From c763f7fe395d25d92a989cf93bdbcee8126048e7 Mon Sep 17 00:00:00 2001 From: FuzzyGrim Date: Tue, 3 Feb 2026 22:43:51 +0100 Subject: [PATCH] add force exclude to ruff config https://github.com/astral-sh/ruff/issues/1220 --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 3d576d91..a35ebc06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,7 @@ [tool.ruff] target-version = "py312" extend-exclude = ["migrations"] +force-exclude = true [tool.ruff.lint] select = ["ALL"]