-
Notifications
You must be signed in to change notification settings - Fork 86
/
.pre-commit-hooks.yaml
28 lines (28 loc) · 978 Bytes
/
.pre-commit-hooks.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
- id: markdownlint
name: markdownlint
description: "Checks the style of Markdown/Commonmark files."
entry: markdownlint
language: node
types: [markdown]
minimum_pre_commit_version: 0.15.0
- id: markdownlint-fix
name: markdownlint-fix
description: "Fixes the style of Markdown/Commonmark files."
entry: markdownlint --fix
language: node
types: [markdown]
minimum_pre_commit_version: 0.15.0
- id: markdownlint-docker
name: markdownlint-docker
description: "Checks the style of Markdown/Commonmark files."
entry: ghcr.io/igorshubovych/markdownlint-cli
language: docker_image
types: [markdown]
minimum_pre_commit_version: 0.15.0
- id: markdownlint-fix-docker
name: markdownlint-fix-docker
description: "Fixes the style of Markdown/Commonmark files."
entry: ghcr.io/igorshubovych/markdownlint-cli --fix
language: docker_image
types: [markdown]
minimum_pre_commit_version: 0.15.0