From 88b5ed9f80faf8289d51b60435b4c1f350fd97be Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 26 Oct 2023 16:48:43 +0900 Subject: [PATCH] Fix Ruff `test-bad-syntax` exclusion --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c526e090..fedf0bc3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -146,10 +146,10 @@ skip-string-normalization = true [tool.ruff] src = ["src"] +exclude = ["tests/packages/test-bad-syntax"] line-length = 127 [tool.ruff.lint] -exclude = ["tests/packages/test-bad-syntax"] extend-select = [ "B", # flake8-bugbear "C4", # flake8-comprehensions