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
3 changes: 3 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Whitespace-only reformats — run: git config blame.ignoreRevsFile .git-blame-ignore-revs
# style: convert content_manager.py from tabs to 4-space indentation
f5436f143f0db7f51267cac7e4066de293bd569c
5 changes: 3 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@ jobs:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v5
# Error-level rules plus T201 (no print() in library code — CLI
# presenters are exempted via per-file-ignores in pyproject).
# presenters are exempted via per-file-ignores in pyproject),
# E722 (no bare except), and W191 (no tab indentation).
# Widen further as the Phase 2 burndown lands.
- run: uvx ruff check --select E9,F63,F7,F82,T201 gas neurons tests
- run: uvx ruff check --select E9,F63,F7,F82,T201,E722,W191 gas neurons tests

test:
runs-on: ubuntu-latest
Expand Down
Loading
Loading