-
-
Notifications
You must be signed in to change notification settings - Fork 84
/
.pre-commit-hooks.yaml
71 lines (60 loc) · 1.63 KB
/
.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
- id: djlint
name: djLint linting
entry: djlint
types_or: [html]
language: python
- id: djlint-django
name: djLint linting for Django
entry: djlint --profile=django
types_or: [html]
language: python
- id: djlint-jinja
name: djLint linting for Jinja
entry: djlint --profile=jinja
types_or: [jinja]
language: python
- id: djlint-nunjucks
name: djLint linting for Nunjucks
entry: djlint --profile=nunjucks
types_or: [nunjucks]
language: python
- id: djlint-handlebars
name: djLint linting for Handlebars/Mustache
entry: djlint --profile=handlebars
types_or: [handlebars]
language: python
- id: djlint-golang
name: djLint linting for Golang templates
entry: djlint --profile=golang
types_or: [gotmpl]
language: python
- id: djlint-reformat
name: djLint formatting
entry: djlint --reformat
types_or: [html]
language: python
- id: djlint-reformat-django
name: djLint formatting for Django
entry: djlint --reformat --profile=django
types_or: [html]
language: python
- id: djlint-reformat-jinja
name: djLint formatting for Jinja
entry: djlint --reformat --profile=jinja
types_or: [jinja]
language: python
- id: djlint-reformat-nunjucks
name: djLint formatting for Nunjucks
entry: djlint --reformat --profile=nunjucks
types_or: [nunjucks]
language: python
- id: djlint-reformat-handlebars
name: djLint formatting for Handlebars/Mustache
entry: djlint --reformat --profile=handlebars
types_or: [handlebars]
language: python
- id: djlint-reformat-golang
name: djLint formatting for Golang templates
entry: djlint --reformat --profile=golang
types_or: [gotmpl]
language: python