From b71253685eeedc7db4f6a962fd4b8bc3c5be66ca Mon Sep 17 00:00:00 2001 From: Jon Parise Date: Fri, 2 Feb 2024 13:57:51 -0800 Subject: [PATCH] Switch to 'tool.ruff.per-file-ignores' The previous name was deprecated. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 855f4c6..3f0e8d3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -74,5 +74,5 @@ src = ["src", "tests"] [tool.ruff.lint.isort] force-single-line = true -[tool.ruff.per-file-ignores] +[tool.ruff.lint.per-file-ignores] "tests/test_chars.py" = ["E501"]