fix(lint): ignore I001 in scripts to avoid ruff version conflicts
Some checks failed
CI / architecture (push) Failing after 10s
CI / ruff (push) Successful in 7s
CI / pytest (push) Failing after 1s
CI / dependency-scanning (push) Successful in 26s
CI / audit (push) Successful in 8s
CI / docs (push) Has been skipped

Local and CI ruff versions disagree on import ordering for alembic.
Added I001 to per-file ignores for scripts.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-12 23:33:36 +01:00
parent 011a4df2d4
commit 363eb74d22

View File

@@ -90,7 +90,7 @@ unfixable = []
# Alembic migrations can have longer lines and specific patterns
"alembic/versions/*.py" = ["E501", "F401"]
# Scripts: late imports, intentional import-for-side-effect checks, loop vars, syntax
"scripts/**/*.py" = ["E402", "F401", "B007", "B015", "B024", "B027"]
"scripts/**/*.py" = ["E402", "F401", "I001", "B007", "B015", "B024", "B027"]
"scripts/rename_terminology.py" = ["ALL"]
# Import sorting configuration (replaces isort)