Project

General

Profile

Coding Standards » History » Version 12

Tom Clegg, 02/05/2015 07:23 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
h2. Source files
37 1 Tom Clegg
38 10 Tom Clegg
No TAB characters in source files. "Except go programs.":https://golang.org/cmd/gofmt/
39 1 Tom Clegg
40 6 Tom Clegg
* Emacs: add to @~/.emacs@ → @(setq-default indent-tabs-mode nil)@
41
* Vim: add to @~/.vimrc@ → @:set expandtab@
42 8 Tom Clegg
* See [[Coding Standards#Git setup|Git setup]] below
43 4 Ward Vandewege
44 6 Tom Clegg
No inline comments: @this = !desired; # we don't want to do it.@
45 4 Ward Vandewege
46 6 Tom Clegg
No long (>80 column) lines, except in rare cases when the alternative is really clunky.
47
48 4 Ward Vandewege
No whitespace at the end of lines. Make git-diff show you:
49 5 Ward Vandewege
50
  git config color.diff.whitespace "red reverse"
51 6 Tom Clegg
git diff --check
52 1 Tom Clegg
53
No commented-out blocks of code that have been replaced or obsoleted.
54
55
* It is in the git history if we want it back.
56
* 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.
57
58
No commented-out debug statements.
59
60
* 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"@
61
62
Adopt indentation style of surrounding lines or (when starting a new file) the nearest existing source code in this tree/language.
63
64
If you fix up existing indentation/formatting, do that in a separate commit.
65
66
* If you bundle formatting changes with functional changes, it makes functional changes hard to find in the diff.
67 6 Tom Clegg
68 12 Tom Clegg
h2. Python
69
70
Tell Emacs you don't want a blank line at the end of a multiline docstring.
71
72
    (setq python-fill-docstring-style 'pep-257-nn)
73
74 11 Brett Smith
h2. JavaScript
75
76
"Always use 3 equals unless you have a good reason to use 2.":http://dorey.github.io/JavaScript-Equality-Table/
77
78 7 Tom Clegg
h2. Git setup
79 6 Tom Clegg
80 7 Tom Clegg
Configure git to prevent you from committing whitespace errors.
81 1 Tom Clegg
82 6 Tom Clegg
<pre>
83 7 Tom Clegg
git config --global core.whitespace tab-in-indent,trailing-space
84
git config --global apply.whitespace error
85 6 Tom Clegg
</pre>