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

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