This commit is contained in:
parent
b49d6a4c3a
commit
3da96332fe
2 changed files with 0 additions and 2269 deletions
File diff suppressed because it is too large
Load diff
49
settings.yml
49
settings.yml
|
@ -1,49 +0,0 @@
|
||||||
# The path to bashly.yml
|
|
||||||
config_path: "%{source_dir}/bashly.yml"
|
|
||||||
|
|
||||||
# The path to use for creating the bash script
|
|
||||||
target_dir: output
|
|
||||||
|
|
||||||
# The path to use for common library files, relative to source_dir
|
|
||||||
lib_dir: lib
|
|
||||||
|
|
||||||
# The path to use for command files, relative to source_dir
|
|
||||||
# When set to nil (~), command files will be placed directly under source_dir
|
|
||||||
# When set to any other string, command files will be placed under this
|
|
||||||
# directory, and each command will get its own subdirectory
|
|
||||||
commands_dir: ~
|
|
||||||
|
|
||||||
# Configure the bash options that will be added to the initialize function:
|
|
||||||
# strict: true Bash strict mode (set -euo pipefail)
|
|
||||||
# strict: false Only exit on errors (set -e)
|
|
||||||
# strict: '' Do not add any 'set' directive
|
|
||||||
# strict: <string> Add any other custom 'set' directive
|
|
||||||
strict: true
|
|
||||||
|
|
||||||
# When true, the generated script will use tab indentation instead of spaces
|
|
||||||
# (every 2 leading spaces will be converted to a tab character)
|
|
||||||
tab_indent: true
|
|
||||||
|
|
||||||
# When true, the generated script will consider any argument in the form of
|
|
||||||
# `-abc` as if it is `-a -b -c`.
|
|
||||||
compact_short_flags: true
|
|
||||||
|
|
||||||
# Set to 'production' or 'development':
|
|
||||||
# env: production Generate a smaller script, without file markers
|
|
||||||
# env: development Generate with file markers
|
|
||||||
env: development
|
|
||||||
|
|
||||||
# The extension to use when reading/writing partial script snippets
|
|
||||||
partials_extension: sh
|
|
||||||
|
|
||||||
# Display various usage elements in color by providing the name of the color
|
|
||||||
# function. The value for each property is a name of a function that is
|
|
||||||
# available in your script, for example: `green` or `bold`.
|
|
||||||
# You can run `bashly add colors` to add a standard colors library.
|
|
||||||
# This option cannot be set via environment variables.
|
|
||||||
usage_colors:
|
|
||||||
caption: blue
|
|
||||||
command: green
|
|
||||||
arg: red
|
|
||||||
flag: yellow
|
|
||||||
environment_variable: cyan
|
|
Loading…
Reference in a new issue