typos/.pre-commit-hooks.yaml
Ville Skyttä 867ee75b02 feat(pre-commit): Add binary based install
For no additional build dependencies (besides Python >= 3.6), and faster
install.

The setup.py here is a copy of the one at
https://github.com/shellcheck-py/shellcheck-py with changes kept at the
bare minimum for future diffability.

We don't support checksumming at least yet, because there's no access to
them from cargo-release at the moment.

Closes #285
2021-06-28 19:53:51 +03:00

15 lines
321 B
YAML

- id: typos
name: typos
description: Source code spell checker, binary install
language: python
entry: typos
args: [--write-changes]
types: [text]
- id: typos-src
name: typos
description: Source code spell checker, source install
language: rust
entry: typos
args: [--write-changes]
types: [text]