|
40 | 40 | "properties": { |
41 | 41 | "source_dir": { |
42 | 42 | "title": "source dir", |
43 | | - "description": "A directory with source files of the current script\nhttps://bashly.dannyb.co/usage/settings/#source_dir", |
| 43 | + "description": "The path containing the bashly source files\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\nhttps://bashly.dannyb.co/usage/settings/#config_path", |
| 50 | + "description": "The path to bashly.yml\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\nhttps://bashly.dannyb.co/usage/settings/#target_dir", |
| 57 | + "description": "The path to use for creating the bash 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\nhttps://bashly.dannyb.co/usage/settings/#lib_dir", |
| 64 | + "description": "The path to use for common library files, relative to source_dir\nhttps://bashly.dannyb.co/usage/settings/#lib_dir", |
65 | 65 | "type": "string", |
66 | 66 | "minLength": 1, |
67 | 67 | "default": "lib" |
68 | 68 | }, |
69 | 69 | "commands_dir": { |
70 | 70 | "title": "commands dir", |
71 | | - "description": "A directory to nested command files of the current script\nhttps://bashly.dannyb.co/usage/settings/#commands_dir", |
| 71 | + "description": "The path to use for command files, relative to source_dir\nhttps://bashly.dannyb.co/usage/settings/#commands_dir", |
72 | 72 | "oneOf": [ |
73 | 73 | { |
74 | 74 | "type": "string", |
|
81 | 81 | }, |
82 | 82 | "strict": { |
83 | 83 | "title": "strict", |
84 | | - "description": "Bash initialization options of the current script\nhttps://bashly.dannyb.co/usage/settings/#strict", |
| 84 | + "description": "Configure the bash options that will be added to the initialize function\nhttps://bashly.dannyb.co/usage/settings/#strict", |
85 | 85 | "oneOf": [ |
86 | 86 | { |
87 | 87 | "type": "boolean" |
|
97 | 97 | }, |
98 | 98 | "tab_indent": { |
99 | 99 | "title": "tab indent", |
100 | | - "description": "Whether to use tabs in the the current script\nhttps://bashly.dannyb.co/usage/settings/#tab_indent", |
| 100 | + "description": "Whether to use tabs or spaces in the the generated script\nhttps://bashly.dannyb.co/usage/settings/#tab_indent", |
101 | 101 | "type": "boolean", |
102 | 102 | "default": false |
103 | 103 | }, |
|
115 | 115 | }, |
116 | 116 | "env": { |
117 | 117 | "title": "env", |
118 | | - "description": "Whether to include development related comments in the current script\nhttps://bashly.dannyb.co/usage/settings/#env", |
| 118 | + "description": "Whether to include development related comments in the generated script\nhttps://bashly.dannyb.co/usage/settings/#env", |
119 | 119 | "type": "string", |
120 | 120 | "enum": [ |
121 | 121 | "development", |
|
125 | 125 | }, |
126 | 126 | "partials_extension": { |
127 | 127 | "title": "partials extension", |
128 | | - "description": "A partial snippet extension of the current script\nhttps://bashly.dannyb.co/usage/settings/#partials_extension", |
| 128 | + "description": "The extension to use when reading/writing partial script snippets\nhttps://bashly.dannyb.co/usage/settings/#partials_extension", |
129 | 129 | "type": "string", |
130 | 130 | "minLength": 1, |
131 | 131 | "default": "sh" |
132 | 132 | }, |
133 | 133 | "usage_colors": { |
134 | 134 | "title": "usage colors", |
135 | | - "description": "Usage colors of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 135 | + "description": "Enable and configure colorful output for --help\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
136 | 136 | "type": "object", |
137 | 137 | "properties": { |
138 | 138 | "caption": { |
139 | 139 | "title": "caption", |
140 | | - "description": "A caption color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 140 | + "description": "Color for captions\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
141 | 141 | "$ref": "#/definitions/color" |
142 | 142 | }, |
143 | 143 | "command": { |
144 | 144 | "title": "command", |
145 | | - "description": "A command color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 145 | + "description": "Color for commands\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
146 | 146 | "$ref": "#/definitions/color" |
147 | 147 | }, |
148 | 148 | "arg": { |
149 | 149 | "title": "arg", |
150 | | - "description": "An argument color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 150 | + "description": "Color for positional arguments\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
151 | 151 | "$ref": "#/definitions/color" |
152 | 152 | }, |
153 | 153 | "flag": { |
154 | 154 | "title": "flag", |
155 | | - "description": "A flag color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 155 | + "description": "Color for flags\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
156 | 156 | "$ref": "#/definitions/color" |
157 | 157 | }, |
158 | 158 | "environment_variable": { |
159 | 159 | "title": "environment variable", |
160 | | - "description": "An environment variable color of the current script\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
| 160 | + "description": "Color for env environment variables\nhttps://bashly.dannyb.co/usage/settings/#usage_colors", |
161 | 161 | "$ref": "#/definitions/color" |
162 | 162 | } |
163 | 163 | }, |
|
0 commit comments