@@ -41,16 +41,22 @@ partials_extension: sh
41
41
# -------------------------------------------------------------------------------
42
42
43
43
# Configure the bash options that will be added to the initialize function:
44
- # strict: true Bash strict mode (set -euo pipefail)
45
- # strict: false Only exit on errors (set -e)
46
- # strict: '' Do not add any 'set' directive
47
- # strict: <string> Add any other custom 'set' directive
44
+ # strict: true # Bash strict mode (set -euo pipefail)
45
+ # strict: false # Only exit on errors (set -e)
46
+ # strict: '' # Do not add any 'set' directive
47
+ # strict: <string> # Add any other custom 'set' directive
48
48
strict : false
49
49
50
50
# When true, the generated script will use tab indentation instead of spaces
51
51
# (every 2 leading spaces will be converted to a tab character)
52
52
tab_indent : false
53
53
54
+ # Choose a post-processor for the generated script:
55
+ # formatter: internal # Use Bashly's internal formatter (compacts newlines)
56
+ # formatter: none # Disable all post-processing
57
+ # formatter: shfmt # Use shfmt if installed
58
+ formatter : internal
59
+
54
60
55
61
# -------------------------------------------------------------------------------
56
62
# INTERFACE OPTIONS
@@ -100,10 +106,10 @@ env: development
100
106
101
107
# Tweak the script output by enabling or disabling some script output.
102
108
# These options accept one of the following strings:
103
- # - production render this feature only when env == production
104
- # - development render this feature only when env == development
105
- # - always render this feature in any environment
106
- # - never do not render this feature
109
+ # - production # render this feature only when env == production
110
+ # - development # render this feature only when env == development
111
+ # - always # render this feature in any environment
112
+ # - never # do not render this feature
107
113
enable_header_comment : always
108
114
enable_bash3_bouncer : always
109
115
enable_view_markers : development
0 commit comments