|
35 | 35 | } |
36 | 36 | }, |
37 | 37 | "title": "settings", |
38 | | - "description": "Settings of the current application", |
| 38 | + "description": "Settings of the current application\nhttps://bashly.dannyb.co/usage/settings/#settings", |
39 | 39 | "type": "object", |
40 | 40 | "properties": { |
41 | 41 | "source_dir": { |
42 | 42 | "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", |
44 | 44 | "type": "string", |
45 | 45 | "minLength": 1, |
46 | 46 | "default": "src" |
47 | 47 | }, |
48 | 48 | "config_path": { |
49 | 49 | "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", |
51 | 51 | "type": "string", |
52 | 52 | "minLength": 1, |
53 | 53 | "default": "%{source_dir}/bashly.yml" |
54 | 54 | }, |
55 | 55 | "target_dir": { |
56 | 56 | "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", |
58 | 58 | "type": "string", |
59 | 59 | "minLength": 1, |
60 | 60 | "default": "." |
61 | 61 | }, |
62 | 62 | "lib_dir": { |
63 | 63 | "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", |
65 | 65 | "type": "string", |
66 | 66 | "minLength": 1, |
67 | 67 | "default": "lib" |
68 | 68 | }, |
69 | 69 | "strict": { |
70 | 70 | "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", |
72 | 72 | "oneOf": [ |
73 | 73 | { |
74 | 74 | "type": "boolean" |
|
84 | 84 | }, |
85 | 85 | "tab_indent": { |
86 | 86 | "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", |
88 | 88 | "type": "boolean", |
89 | 89 | "default": false |
90 | 90 | }, |
91 | 91 | "compact_short_flags": { |
92 | 92 | "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", |
94 | 94 | "type": "boolean", |
95 | 95 | "default": true |
96 | 96 | }, |
97 | 97 | "env": { |
98 | 98 | "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", |
100 | 100 | "type": "string", |
101 | 101 | "enum": [ |
102 | 102 | "development", |
|
106 | 106 | }, |
107 | 107 | "partials_extension": { |
108 | 108 | "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", |
110 | 110 | "type": "string", |
111 | 111 | "minLength": 1, |
112 | 112 | "default": "sh" |
113 | 113 | }, |
114 | 114 | "usage_colors": { |
115 | 115 | "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", |
117 | 117 | "type": "object", |
118 | 118 | "properties": { |
119 | 119 | "caption": { |
120 | 120 | "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", |
122 | 122 | "$ref": "#/definitions/color" |
123 | 123 | }, |
124 | 124 | "command": { |
125 | 125 | "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", |
127 | 127 | "$ref": "#/definitions/color" |
128 | 128 | }, |
129 | 129 | "arg": { |
130 | 130 | "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", |
132 | 132 | "$ref": "#/definitions/color" |
133 | 133 | }, |
134 | 134 | "flag": { |
135 | 135 | "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", |
137 | 137 | "$ref": "#/definitions/color" |
138 | 138 | }, |
139 | 139 | "environment_variable": { |
140 | 140 | "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", |
142 | 142 | "$ref": "#/definitions/color" |
143 | 143 | } |
144 | 144 | }, |
|
0 commit comments