forked from TRaSH-Guides/Guides
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
43 lines (38 loc) · 1.26 KB
/
.pre-commit-config.yaml
File metadata and controls
43 lines (38 loc) · 1.26 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
repos:
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.36.1
hooks:
- id: check-jsonschema
name: Validate Guide only Custom Formats
files: ^docs/json/guide-only/[^/]+$
types: [json]
args: ["-v", "--schemafile", "schemas/guide-only-cf.schema.json"]
- id: check-jsonschema
name: Validate Radarr Custom Formats
files: ^docs/json/radarr/cf/[^/]+$
types: [json]
args: ["-v", "--schemafile", "schemas/radarr-cf.schema.json"]
- id: check-jsonschema
name: Validate Sonarr Custom Formats
files: ^docs/json/sonarr/cf/[^/]+$
types: [json]
args: ["-v", "--schemafile", "schemas/sonarr-cf.schema.json"]
- repo: https://github.com/adrienverge/yamllint
rev: v1.38.0
hooks:
- id: yamllint
name: YAML Lint
types: [yaml]
args: ["-c", "yamllint.yml"]
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.47.0
hooks:
- id: markdownlint
name: Markdown Lint
types: [markdown]
args: ["-c", ".markdownlint.yaml"]
- repo: https://github.com/editorconfig-checker/editorconfig-checker
rev: v3.6.1
hooks:
- id: editorconfig-checker
name: EditorConfig Lint