Project

General

Profile

Coding Standards » History » Version 9

Tom Clegg, 05/12/2014 03:33 PM

1 1 Tom Clegg
h1. Coding Standards
2
3 3 Tom Clegg
The rules are always up for debate. However, when debate is needed, it should happen outside the source tree. In other words, if the rules are wrong, first debate the rules in IRC etc., then fix the rules, then follow the new rules.
4 1 Tom Clegg
5 2 Tom Clegg
{{toc}}
6 1 Tom Clegg
7 2 Tom Clegg
h2. Git commits
8
9 1 Tom Clegg
Make sure your name and email address are correct.
10
11
* Use @git config --global user.email foo@example.com@ et al.
12
* It's a little unfortunate to have commits with author @foo@myworkstation.local@ but not bad enough to rewrite history, so fix this before you push!
13
14 9 Tom Clegg
Refer to a story number in each commit comment.
15
16
* @1234: Remove useless button.@
17
18
*When merging/committing to master,* refer to the story number in a way Redmine will notice. Redmine will list these commits/merges on the story page itself.
19
20
* @closes #1234@, or
21
* @refs #1234@
22
23 1 Tom Clegg
Use descriptive commit comments.
24
25
* Describe the delta between the old and new tree. If possible, describe the delta in *behavior* rather than the source code itself.
26 9 Tom Clegg
* Good: "1234: Support use of spaces in filenames."
27
* Good: "1234: Fix crash when user_id is nil."
28 1 Tom Clegg
* Less good: "Add some controller methods." (What do they do?)
29
* Less good: "More progress on UI branch." (What is different?)
30
* Less good: "Incorporate Tom's suggestions." (Who cares whose suggestions -- what changed?)
31
32
If further background or explanation is needed, separate it from the summary with a blank line.
33
34
* Example: "Users found it confusing that the boxes had different colors even though they represented the same kinds of things."
35
36 2 Tom Clegg
37
h2. Source files
38 1 Tom Clegg
39
No TAB characters in source files.
40
41 6 Tom Clegg
* Emacs: add to @~/.emacs@ → @(setq-default indent-tabs-mode nil)@
42
* Vim: add to @~/.vimrc@ → @:set expandtab@
43 8 Tom Clegg
* See [[Coding Standards#Git setup|Git setup]] below
44 4 Ward Vandewege
45 6 Tom Clegg
No inline comments: @this = !desired; # we don't want to do it.@
46 4 Ward Vandewege
47 6 Tom Clegg
No long (>80 column) lines, except in rare cases when the alternative is really clunky.
48
49 4 Ward Vandewege
No whitespace at the end of lines. Make git-diff show you:
50 5 Ward Vandewege
51
  git config color.diff.whitespace "red reverse"
52 6 Tom Clegg
git diff --check
53 1 Tom Clegg
54
No commented-out blocks of code that have been replaced or obsoleted.
55
56
* It is in the git history if we want it back.
57
* If its absence would confuse someone reading the new code (despite never having read the old code), explain its absence in an English comment. If the old code is really still needed to support the English explanation, then go ahead -- now we know why it's there.
58
59
No commented-out debug statements.
60
61
* If the debug statements are likely to be needed in the future, use a logging facility that can be enabled at run time. @logger.debug "foo"@
62
63
Adopt indentation style of surrounding lines or (when starting a new file) the nearest existing source code in this tree/language.
64
65
If you fix up existing indentation/formatting, do that in a separate commit.
66
67
* If you bundle formatting changes with functional changes, it makes functional changes hard to find in the diff.
68 6 Tom Clegg
69 7 Tom Clegg
h2. Git setup
70 6 Tom Clegg
71 7 Tom Clegg
Configure git to prevent you from committing whitespace errors.
72 1 Tom Clegg
73 6 Tom Clegg
<pre>
74 7 Tom Clegg
git config --global core.whitespace tab-in-indent,trailing-space
75
git config --global apply.whitespace error
76 6 Tom Clegg
</pre>