f83db2fac1
- add external validation reports and open-source comparison references - integrate Jaimini arudha/graha pada, enhanced argala, and additional synastry kutas - update skill docs and capability matrices - add smoke tests for open-source integrations
27 lines
721 B
YAML
27 lines
721 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: check-yaml
|
|
- id: check-toml
|
|
# Use project tools from the uv-managed environment.
|
|
- repo: local
|
|
hooks:
|
|
- id: ruff
|
|
name: ruff (local)
|
|
entry: uv run --locked ruff check --fix
|
|
language: system
|
|
types: [python]
|
|
- id: ruff-format
|
|
name: ruff-format (local)
|
|
entry: uv run --locked ruff format
|
|
language: system
|
|
types: [python]
|
|
- id: mypy
|
|
name: mypy (local)
|
|
entry: uv run --locked mypy jyotishganit/
|
|
language: system
|
|
pass_filenames: false
|