mirror of
https://github.com/TauricResearch/TradingAgents.git
synced 2026-09-19 19:25: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"
|
run: pip install "ruff>=0.15"
|
||||||
- name: Lint the repository
|
- name: Lint the repository
|
||||||
# The repo is fully clean under the strict select, so we lint everything
|
# 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 .
|
run: ruff check .
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ filterwarnings = [
|
|||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
line-length = 100
|
line-length = 100
|
||||||
target-version = "py310"
|
target-version = "py310"
|
||||||
extend-exclude = ["results", "worklog"]
|
extend-exclude = ["results"]
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
# Standard "good defaults" rule set (pyflakes + pycodestyle + isort + bugbear +
|
# Standard "good defaults" rule set (pyflakes + pycodestyle + isort + bugbear +
|
||||||
|
|||||||
Reference in New Issue
Block a user