-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.json
52 lines (52 loc) · 1.09 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
{
"additionalProperties": false,
"type": "object",
"properties": {
"$schema": {
"type": "string"
},
"include": {
"description": "The files, directories and glob patterns to be included for updates.",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"exclude": {
"description": "The files, directories and global patterns to exclude from updates.",
"anyOf": [
{
"type": "array",
"items": {
"type": "string"
}
},
{
"type": "string"
}
]
},
"allowBreaking": {
"description": "Allow breaking updates (major releases).",
"default": false,
"type": "boolean"
},
"allowUnstable": {
"description": "Allow unstable updates (prereleases).",
"default": false,
"type": "boolean"
},
"readOnly": {
"description": "Perform a dry run.",
"default": false,
"type": "boolean"
}
}
}