We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a847bef commit 5fccfb3Copy full SHA for 5fccfb3
.github/Contributing.md
@@ -0,0 +1,17 @@
1
+## Bash Style Conventions
2
+
3
+* Use spaces for indentation.
4
+ No tabs please.
5
+* Use 4 space indent.
6
+* Keep lines under 80 chars if possible.
7
+* Always use `[[ ... ]]`, not `[ ... ]` form.
8
+* Don't use `-n`.
9
+* Don't quote things that don't need quotes.
10
+ * Unless it really adds to readability.
11
+* If script is long, break into functions and use a `main` function at top.
12
+* Function names should be `foo-bar` not `foo_bar`.
13
+* Define functions `foo-bar() ( ... )`, not `function foo-bar ( ... )`.
14
15
+## Testing
16
17
+* Run `make test`.
0 commit comments