Skip to content

Commit c0287a5

Browse files
fix(ci): Add docs/ to pyproject.toml ruff ignores
Synced per-file-ignores between .ruff.toml and pyproject.toml to ensure consistent linting behavior in CI.
1 parent b561e88 commit c0287a5

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

pyproject.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,10 @@ ignore = [
204204
"F401", # Unused imports in examples (might be used by users)
205205
"D1", "PLR2004"
206206
]
207+
"docs/**/*.py" = [
208+
"F401", # Unused imports for optional extension detection
209+
"D1"
210+
]
207211
"src/advanced_image_sensor_interface/sensor_interface/gpu_acceleration.py" = [
208212
"F401", # Optional dependency imports (numba)
209213
]

0 commit comments

Comments
 (0)