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: 0 additions & 1 deletion .claude/commands/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,3 @@ Show the task breakdown and:
- Include testing tasks throughout, not just at the end

think hard

3 changes: 2 additions & 1 deletion .claude/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@
"Bash(git rebase:*)",
"Bash(curl:*)",
"Bash(wget:*)",
"Bash(uv:*)"
"Bash(uv:*)",
"Bash(gh:*view*)"
],
"deny": [
"Bash(sudo:*)",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
coverage:
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'

steps:
- uses: actions/checkout@v4

Expand All @@ -65,4 +65,4 @@ jobs:
if: always()
with:
file: ./htmlcov/index.html
fail_ci_if_error: false
fail_ci_if_error: false
2 changes: 1 addition & 1 deletion .github/workflows/docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,4 +58,4 @@ make lint

# Check formatting
uv run ruff format --check src/ tests/
```
```
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
test-and-build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -46,4 +46,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: dist-packages
path: dist/
path: dist/
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@ wheels/

# Virtual environments
.venv

# tmp files
.tmp
24 changes: 24 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Pre-commit hooks for automated code quality checks
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-ast
- id: check-merge-conflict
- id: check-toml
- id: debug-statements

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.8.4
hooks:
- id: ruff
args: [--fix, --exit-non-zero-on-fix]
types_or: [python, pyi]
- id: ruff-format
types_or: [python, pyi]
Loading