Skip to content

Commit 1126875

Browse files
EmilySeville7cfgEmilySeville7cfg
authored andcommitted
feat(settings): add doc refs
1 parent ec22431 commit 1126875

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

schemas/settings.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -35,40 +35,40 @@
3535
}
3636
},
3737
"title": "settings",
38-
"description": "Settings of the current application",
38+
"description": "Settings of the current application\nhttps://bashly.dannyb.co/usage/settings/#settings",
3939
"type": "object",
4040
"properties": {
4141
"source_dir": {
4242
"title": "source dir",
43-
"description": "A directory with source files of the current script",
43+
"description": "A directory with source files of the current script\nhttps://bashly.dannyb.co/usage/settings/#source_dir",
4444
"type": "string",
4545
"minLength": 1,
4646
"default": "src"
4747
},
4848
"config_path": {
4949
"title": "config path",
50-
"description": "A path to bashly.yml of the current script",
50+
"description": "A path to bashly.yml of the current script\nhttps://bashly.dannyb.co/usage/settings/#config_path",
5151
"type": "string",
5252
"minLength": 1,
5353
"default": "%{source_dir}/bashly.yml"
5454
},
5555
"target_dir": {
5656
"title": "target dir",
57-
"description": "A directory of the current script",
57+
"description": "A directory of the current script\nhttps://bashly.dannyb.co/usage/settings/#target_dir",
5858
"type": "string",
5959
"minLength": 1,
6060
"default": "."
6161
},
6262
"lib_dir": {
6363
"title": "lib dir",
64-
"description": "A directory to common library files of the current script",
64+
"description": "A directory to common library files of the current script\nhttps://bashly.dannyb.co/usage/settings/#lib_dir",
6565
"type": "string",
6666
"minLength": 1,
6767
"default": "lib"
6868
},
6969
"strict": {
7070
"title": "strict",
71-
"description": "Bash initialiation options of the current script",
71+
"description": "Bash initialiation options of the current script\nhttps://bashly.dannyb.co/usage/settings/#strict",
7272
"oneOf": [
7373
{
7474
"type": "boolean"
@@ -84,19 +84,19 @@
8484
},
8585
"tab_indent": {
8686
"title": "tab indent",
87-
"description": "Whether to use tabs in the the current script",
87+
"description": "Whether to use tabs in the the current script\nhttps://bashly.dannyb.co/usage/settings/#tab_indent",
8888
"type": "boolean",
8989
"default": false
9090
},
9191
"compact_short_flags": {
9292
"title": "compact short flags",
93-
"description": "Whether to expand short flags of the current script",
93+
"description": "Whether to expand short flags of the current script\nhttps://bashly.dannyb.co/usage/settings/#compact_short_flags",
9494
"type": "boolean",
9595
"default": true
9696
},
9797
"env": {
9898
"title": "env",
99-
"description": "Whether to include development related comments in the current script",
99+
"description": "Whether to include development related comments in the current script\nhttps://bashly.dannyb.co/usage/settings/#env",
100100
"type": "string",
101101
"enum": [
102102
"development",
@@ -106,39 +106,39 @@
106106
},
107107
"partials_extension": {
108108
"title": "partials extension",
109-
"description": "A partial snippet extension of the current script",
109+
"description": "A partial snippet extension of the current script\nhttps://bashly.dannyb.co/usage/settings/#partials_extension",
110110
"type": "string",
111111
"minLength": 1,
112112
"default": "sh"
113113
},
114114
"usage_colors": {
115115
"title": "usage colors",
116-
"description": "Usage colors of the current script",
116+
"description": "Usage colors of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
117117
"type": "object",
118118
"properties": {
119119
"caption": {
120120
"title": "caption",
121-
"description": "A caption color of the current script",
121+
"description": "A caption color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
122122
"$ref": "#/definitions/color"
123123
},
124124
"command": {
125125
"title": "command",
126-
"description": "A command color of the current script",
126+
"description": "A command color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
127127
"$ref": "#/definitions/color"
128128
},
129129
"arg": {
130130
"title": "arg",
131-
"description": "An argument color of the current script",
131+
"description": "An argument color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
132132
"$ref": "#/definitions/color"
133133
},
134134
"flag": {
135135
"title": "flag",
136-
"description": "A flag color of the current script",
136+
"description": "A flag color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
137137
"$ref": "#/definitions/color"
138138
},
139139
"environment_variable": {
140140
"title": "environment variable",
141-
"description": "An environment variable color of the current script",
141+
"description": "An environment variable color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors",
142142
"$ref": "#/definitions/color"
143143
}
144144
},

0 commit comments

Comments
 (0)