diff options
author | Tristan Sloughter <[email protected]> | 2013-04-05 09:26:38 -0700 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2013-04-05 09:26:38 -0700 |
commit | 467a0ffd5325753ee5c7f3f936f2dee76a9d6193 (patch) | |
tree | ecdc307871720a7b0ff6251b3a2eaa7b97ea43ff | |
parent | 95ffc08991826ef33dc80aa4ab4c8755f4f31dd4 (diff) | |
parent | fe3150e4f82420c722dcbf28f32d09a504962024 (diff) | |
download | relx-467a0ffd5325753ee5c7f3f936f2dee76a9d6193.tar.gz relx-467a0ffd5325753ee5c7f3f936f2dee76a9d6193.tar.bz2 relx-467a0ffd5325753ee5c7f3f936f2dee76a9d6193.zip |
Merge pull request #37 from erlware/next
Next
-rw-r--r-- | CONTRIBUTING.md | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 3689b7a..ea4ef0d 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -102,13 +102,18 @@ Source editing -------------- The following rules MUST be followed: - * Indentation uses horizontal tabs (1 tab = 4 columns) + * Indentation uses 4 horizontal spaces + * Tabs should not be used * Do NOT align code; only indentation is allowed - * Lines MUST NOT span more than 80 columns + The following rules SHOULD be followed: * Write small functions whenever possible * Avoid having too many clauses containing clauses containing clauses + * Lines SHOULD NOT span more than 80 columns + +When in doubt indentation as performed in the Erlang Emacs Mode is +correct. Committing ---------- |