From be77b9201e003cd11bd638f01882a4be0b9905e9 Mon Sep 17 00:00:00 2001 From: Konrad Borowski Date: Sun, 28 Jul 2013 20:49:12 +0200 Subject: Rename STYLEGUIDE.md to CONTRIBUTING.md, so GitHub would notice it. --- CONTRIBUTING.md | 105 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 105 insertions(+) create mode 100644 CONTRIBUTING.md (limited to 'CONTRIBUTING.md') diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 00000000..d3e2ca1f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,105 @@ +# Style guide + +This is style guide for fish contributors. You should use it for any new code +that you would add to this project and try to format existing code to use this +style. + +## Formatting + +1. fish uses the Allman/BSD style of indentation. +2. Indent with spaces, not tabs. +3. Use 4 spaces per indent (unless needed like `Makefile`). +4. Opening curly bracket is on the following line: + + // ✔: + struct name + { + // code + }; + + void func() + { + // code + } + + if (...) + { + // code + } + + // ✗: + void func() { + // code + } + +5. Put space after `if`, `while` and `for` before conditions. + + // ✔: + if () {} + + // ✗: + if() {} + +6. Put spaces before and after operators excluding increment and decrement; + + // ✔: + int a = 1 + 2 * 3; + a++; + + // ✗: + int a=1+2*3; + a ++; + +7. Never put spaces between function name and parameters list. + + // ✔: + func(args); + + // ✗: + func (args); + +8. Never put spaces after `(` and before `)`. +9. Always put space after comma and semicolon. + + // ✔: + func(arg1, arg2); + + for (int i = 0; i < LENGTH; i++) {} + + // ✗: + func(arg1,arg2); + + for (int i = 0;i