-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.json
54 lines (54 loc) · 1.12 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
{
"type": "object",
"properties": {
"extends": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"uniqueItems": true
},
"defines": {
"type": "object",
"additionalProperties": {
"type": "object",
"properties": {
"format": {
"enum": [
"editorconfig",
"ignorefile",
"json",
"text",
"toml",
"yaml"
]
}
},
"additionalProperties": false,
"required": ["format"]
}
},
"patches": {
"type": "object",
"additionalProperties": {
"type": "array",
"items": {
"type": "object",
"properties": {
"value": {},
"array_merge": {
"enum": ["append", "append_unique", "replace"]
},
"priority": {
"type": "integer"
}
},
"additionalProperties": false,
"required": ["value"]
}
}
}
},
"additionalProperties": false
}