From 739b4ef02a7c965556344c33866859a5b67ae4d3 Mon Sep 17 00:00:00 2001 From: Russ Allbery Date: Tue, 19 Nov 2024 15:47:41 -0800 Subject: [PATCH] Remove unnecessary Black configuration Black is never used recursively for reformatting any more since Gafaelfawr has switched to Ruff, so the file exclusion list is no longer needed. --- pyproject.toml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 01f211ce..6b63c92b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -71,20 +71,6 @@ gafaelfawr = "gafaelfawr.cli:main" [tool.black] line-length = 79 target-version = ["py312"] -exclude = ''' -/( - \.eggs - | \.git - | \.mypy_cache - | \.tox - | \.venv - | _build - | build - | dist -)/ -''' -# Use single-quoted strings so TOML treats the string like a Python r-string -# Multi-line strings are implicitly treated by black as regular expressions [tool.coverage.run] parallel = true