huesoporro/.pre-commit-config.yaml
2024-12-18 18:27:46 +01:00

56 lines
1.3 KiB
YAML

files: src|tests
exclude: ^$
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
args: [ --markdown-linebreak-ext=md ]
- id: end-of-file-fixer
- id: check-ast
- id: check-added-large-files
- id: check-byte-order-marker
- id: check-case-conflict
- id: check-docstring-first
- id: check-merge-conflict
- id: check-toml
- id: debug-statements
- id: mixed-line-ending
args: [ --fix=lf ]
- repo: local
hooks:
- id: mypy
name: mypy
entry: uv run mypy --check-untyped-defs
language: system
types: [ python ]
exclude: LICENSE|helm
exclude_types:
- markdown
- css
- html
- id: ruff-format
name: uv run ruff format
language: system
entry: ruff format .
exclude: LICENSE|charts
exclude_types:
- markdown
- css
- html
- javascript
- id: ruff-check
name: ruff check
language: system
entry: uv run ruff check . --fix --exit-non-zero-on-fix
exclude: LICENSE|charts
exclude_types:
- markdown
- css
- html
- javascript