mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 08:30:57 -05:00
ec3ffa591c
Mostly as an alternative to the src install, but trading host dependency on Rust with one on Docker.
26 lines
627 B
YAML
26 lines
627 B
YAML
- id: typos
|
|
name: typos
|
|
description: Source code spell checker, binary install
|
|
language: python
|
|
entry: typos
|
|
args: [--write-changes]
|
|
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
|
|
language: rust
|
|
entry: typos
|
|
args: [--write-changes]
|
|
types: [text]
|
|
stages: [commit, merge-commit, push, manual]
|