We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 77820c3 commit ee1b813Copy full SHA for ee1b813
doc/style.md
@@ -3,4 +3,12 @@ bash-my-aws style guide
3
4
* Always quote "$variables"
5
* Only use parentheses around variables when not surrounded with whitespace (better way to phrase this?)
6
-* use "$(date)" rather than "`date`"
+* use ``$(date)`` rather than "``date``"
7
+* use `[[` and `]]` rather than `[`, `]`, or `test`
8
+
9
+* show errors with `__bma_error()`
10
+* show usage options with `__bma_usage()`
11
+* parse inputs with `__bma_read_inputs()`
12
+* make sure commands support `--json` and `--text` output options
13
14
+* regenerate and test the bash_completion script after adding new functions
0 commit comments