mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2026-09-03 05:10:16 +03:00
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:
@@ -98,6 +98,10 @@ select = [
|
||||
"BLE", # flake8-blind-except: flags bare `except Exception`
|
||||
]
|
||||
|
||||
ignore = [
|
||||
"EXE001"
|
||||
]
|
||||
|
||||
[tool.ruff.lint.isort]
|
||||
known-first-party = ["stirling", "tests"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user