Ignore EXE001 in engine ruff config

Add EXE001 to the Ruff ignore list in engine/pyproject.toml. This suppresses the EXE001 lint rule for the engine package during ruff runs, preventing that specific check from blocking CI/linting in the engine workspace.
This commit is contained in:
Ludy87
2026-08-19 00:38:02 +02:00
parent c835f2da06
commit d649afb22f
+4
View File
@@ -98,6 +98,10 @@ select = [
"BLE", # flake8-blind-except: flags bare `except Exception`
]
ignore = [
"EXE001"
]
[tool.ruff.lint.isort]
known-first-party = ["stirling", "tests"]