diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b7207951..72942f5dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -57,5 +57,5 @@ jobs: run: pip install "ruff>=0.15" - name: Lint the repository # The repo is fully clean under the strict select, so we lint everything - # (results/ and worklog/ are excluded via pyproject extend-exclude). + # (generated results/ is excluded via pyproject extend-exclude). run: ruff check . diff --git a/pyproject.toml b/pyproject.toml index b6e2974a7..a543311e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -69,7 +69,7 @@ filterwarnings = [ [tool.ruff] line-length = 100 target-version = "py310" -extend-exclude = ["results", "worklog"] +extend-exclude = ["results"] [tool.ruff.lint] # Standard "good defaults" rule set (pyflakes + pycodestyle + isort + bugbear +