Files
rocm-wyoming-whisper/.pre-commit-config.yaml
2023-11-25 19:26:46 +01:00

28 lines
664 B
YAML

---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
args: [--allow-multiple-documents]
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: local
hooks:
- id: black
name: black
entry: poetry run black src
language: system
types: [python]
pass_filenames: false
- id: ruff
name: ruff
entry: poetry run ruff --fix src
language: system
types: [python]
pass_filenames: false
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v2.3.2
hooks:
- id: prettier