Compare commits

...

2 Commits

Author SHA1 Message Date
Sam
fb5d63f636 Update .gitignore to include IDE and cache directories
All checks were successful
Build Simulation and Test / Run All Tests (push) Successful in 28s
2025-06-01 16:21:51 -05:00
Sam
784123b9e1 Add Ruff linter and formatter to pre-commit configuration 2025-06-01 16:20:19 -05:00
2 changed files with 13 additions and 2 deletions

5
.gitignore vendored
View File

@ -1,2 +1,5 @@
uv.lock
.venv/
.venv/
.idea/
.pytest_cache/
.ruff_cache/

View File

@ -19,4 +19,12 @@ repos:
hooks:
# Compile requirements
- id: pip-compile
args: [ pyproject.toml, -o, requirements.txt ]
args: [ pyproject.toml, -o, requirements.txt ]
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.11.12
hooks:
# Run the linter.
- id: ruff
# Run the formatter.
- id: ruff-format