typos/.pre-commit-hooks.yaml
2023-10-09 19:39:11 +00:00

26 lines
678 B
YAML

- id: typos
name: typos
description: Source code spell checker, binary install
language: python
entry: typos
args: [--write-changes, --force-exclude]
types: [text]
stages: [commit, merge-commit, push, manual]
- id: typos-docker
name: typos
description: Source code spell checker, Docker image
language: docker
entry: typos
args: [--write-changes, --force-exclude]
types: [text]
stages: [commit, merge-commit, push, manual]
- id: typos-src
name: typos
description: Source code spell checker, source install
language: rust
entry: typos
args: [--write-changes, --force-exclude]
types: [text]
stages: [commit, merge-commit, push, manual]