mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-09-19 11:15:24 +03:00
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:
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@@ -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 .
|
||||
|
||||
@@ -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 +
|
||||
|
||||
Reference in New Issue
Block a user