From 8b3155dd75ab1679eb277ccb46d265231d03636a Mon Sep 17 00:00:00 2001 From: Micha Reiser Date: Thu, 26 Oct 2023 22:10:34 +0900 Subject: [PATCH] Chore: fix Ruff `test-bad-syntax` exclusion (#697) --- 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