-
Notifications
You must be signed in to change notification settings - Fork 16
/
schema.json
53 lines (53 loc) · 1.87 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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "tran settings",
"description": "tran settings\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "object",
"properties": {
"config": {
"title": "config",
"description": "tran settings\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "object",
"properties": {
"borderless": {
"title": "borderless",
"description": "Whether to disable borders or not\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "boolean",
"default": true
},
"editor": {
"title": "editor",
"description": "An editor\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"default": "vim"
},
"enable_mousewheel": {
"title": "enable mouse wheel",
"description": "Whether to enable a mouse wheel or not\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "boolean",
"default": true
},
"show_updates": {
"title": "show updates",
"description": "Whether to show updates or not\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "boolean",
"default": true
},
"start_dir": {
"title": "starting directory",
"description": "A starting directory\nhttps://github.com/abdfnx/tran?tab=readme-ov-file#tran-config-file",
"type": "string",
"minLength": 1,
"pattern": "[^ ]",
"default": "."
}
},
"minProperties": 1,
"additionalProperties": false
}
},
"minProperties": 1,
"additionalProperties": false
}