Merge pull request #640 from scop/feat/pre-commit-docker

feat: Add Docker pre-commit hook
This commit is contained in:
Ed Page 2022-12-20 14:39:04 -06:00 committed by GitHub
commit 93d01aecca
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 1 deletions

View file

@ -7,6 +7,15 @@
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]
types: [text]
stages: [commit, merge-commit, push, manual]
- id: typos-src
name: typos
description: Source code spell checker, source install

View file

@ -13,7 +13,8 @@ repos:
The `typos` id installs a prebuilt executable from GitHub releases. If
one does not exist for the target platform, or if one built from
sources is preferred, use `typos-src` as the hook id instead.
sources is preferred, use `typos-docker` (requires Docker), or `typos-src`
(requires Rust) as the hook id instead.
Be sure to change `rev` to use the desired `typos` git tag or
revision.