chore: drop the lint exclude for a directory not in the repo

- ruff's extend-exclude listed a path that is not part of the repository, so
  the entry never matched anything in CI
- keep the generated results/ exclude, which is a real runtime output directory
This commit is contained in:
Yijia-Xiao
2026-09-07 20:54:19 +00:00
parent 94113c8d11
commit 260c899c72
2 changed files with 2 additions and 2 deletions

View File

@@ -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 .

View File

@@ -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 +