Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
- 'packages/**'
- 'apps/**'
- 'tests/**'
- 'scripts/**'
- 'pyproject.toml'
- 'uv.lock'
infra:
Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ unfixable = ["B"]
"**/cli.py" = ["B008"]
"**/ragctl/main.py" = ["B008"]
# Scripts, code generators, and infra setup legitimately write to stdout/stderr.
"scripts/**/*.py" = ["T201"]
# S603/S607 are also ignored for scripts/: dev tooling invokes known executables
# (git, uv, etc.) on PATH with fixed argument lists — not user input.
"scripts/**/*.py" = ["T201", "S603", "S607"]
"infra/**/*.py" = ["T201"]
"**/gen_schema*.py" = ["T201"]

Expand Down
Loading