-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.json
91 lines (91 loc) · 1.61 KB
/
schema.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"$id": "https://deno.land/x/githooks/schema.json",
"$schema": "https://json-schema.org/draft-07/schema",
"type": "object",
"properties": {
"applypatch-msg": {
"type": "string"
},
"pre-applypatch": {
"type": "string"
},
"post-applypatch": {
"type": "string"
},
"pre-commit": {
"type": "string"
},
"pre-merge-commit": {
"type": "string"
},
"prepare-commit-msg": {
"type": "string"
},
"commit-msg": {
"type": "string"
},
"post-commit": {
"type": "string"
},
"pre-rebase": {
"type": "string"
},
"post-checkout": {
"type": "string"
},
"post-merge": {
"type": "string"
},
"pre-push": {
"type": "string"
},
"pre-receive": {
"type": "string"
},
"update": {
"type": "string"
},
"proc-receive": {
"type": "string"
},
"post-receive": {
"type": "string"
},
"post-update": {
"type": "string"
},
"reference-transaction": {
"type": "string"
},
"push-to-checkout": {
"type": "string"
},
"pre-auto-gc": {
"type": "string"
},
"post-rewrite": {
"type": "string"
},
"sendemail-validate": {
"type": "string"
},
"fsmonitor-watchman": {
"type": "string"
},
"p4-changelist": {
"type": "string"
},
"p4-prepare-changelist": {
"type": "string"
},
"p4-post-changelist": {
"type": "string"
},
"p4-pre-submit": {
"type": "string"
},
"post-index-change": {
"type": "string"
}
}
}