@@ -68,7 +68,7 @@ properties:
68
68
description : |-
69
69
The path to use for command files, relative to source_dir
70
70
https://bashly.dannyb.co/usage/settings/#commands_dir
71
- oneOf :
71
+ oneOf : &optional_string
72
72
- type : string
73
73
minLength : 1
74
74
- type : " null"
@@ -186,10 +186,7 @@ properties:
186
186
description : |-
187
187
The name of the environment variable (case sensitive) that, if set, will reveal private commands, flags and environment variables
188
188
https://bashly.dannyb.co/usage/settings/#private_reveal_key
189
- oneOf :
190
- - type : string
191
- minLength : 1
192
- - type : " null"
189
+ oneOf : *optional_string
193
190
usage_colors :
194
191
title : usage colors
195
192
description : |-
@@ -228,4 +225,36 @@ properties:
228
225
https://bashly.dannyb.co/usage/settings/#usage_colors
229
226
$ref : ' #/definitions/color'
230
227
additionalProperties : false
228
+ var_aliases :
229
+ title : var_aliases
230
+ description : |-
231
+ Declare alias names for bashly's public global arrays
232
+ https://bashly.dannyb.co/usage/settings/#var_aliases
233
+ type : object
234
+ properties :
235
+ args :
236
+ title : args
237
+ description : |-
238
+ Alias name for the args array
239
+ https://bashly.dannyb.co/usage/settings/#var_aliases
240
+ oneOf : *optional_string
241
+ other_args :
242
+ title : other_args
243
+ description : |-
244
+ Alias name for the other_args array (used when catch_all is enabled)
245
+ https://bashly.dannyb.co/usage/settings/#var_aliases
246
+ oneOf : *optional_string
247
+ deps :
248
+ title : deps
249
+ description : |-
250
+ Alias name for the deps array
251
+ https://bashly.dannyb.co/usage/settings/#var_aliases
252
+ oneOf : *optional_string
253
+ env_var_names :
254
+ title : env_var_names
255
+ description : |-
256
+ Alias name for the env_var_names array
257
+ https://bashly.dannyb.co/usage/settings/#var_aliases
258
+ oneOf : *optional_string
259
+ additionalProperties : false
231
260
additionalProperties : false
0 commit comments