public
Fork of patrikf/ewiki
Description: Simple PHP Wiki using git as storage backend (native php only)
Homepage: http://soultcer.net/wiki/Code/eWiki
Clone URL: git://github.com/soult/ewiki.git
ewiki / HACKING
100644 28 lines (17 sloc) 0.698 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
=== Coding Style ===
 
NO TRAILING SPACES!
vimrc snippet: au Syntax * syn match Error /\s\+$/ containedin=ALL
 
Curly brackets have their own line, always. No empty lines directly at the
beginning/end of a block. Spaces: never after function names, always after
control statements.
 
Class definitions:
    - Variables
    - One-line functions
    - Long functions
 
Function definitions are separated with empty lines.
 
NO empty lines at the beginning/end of any block.
 
 
=== Git Policy ===
 
Summaries in present-tense half-sentences preferred (no full stop)
 
Renaming Files: please do so in a separate commit with renames _only_ so
changes can easily be tracked.
 
Try to commit as often as possible.