typos/.pre-commit-hooks.yaml

27 lines
678 B
YAML
Raw Normal View History

2021-06-08 15:54:38 -04:00
- id: typos
name: typos
description: Source code spell checker, binary install
language: python
entry: typos
2023-10-07 18:01:49 -04:00
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
2023-10-07 18:01:49 -04:00
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
2021-06-08 15:54:38 -04:00
language: rust
entry: typos
2023-10-07 18:01:49 -04:00
args: [--write-changes, --force-exclude]
2021-06-08 15:54:38 -04:00
types: [text]
stages: [commit, merge-commit, push, manual]