diff options
author | eliott <eliott@cactuswax.net> | 2007-11-07 03:02:33 +0100 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-11-07 03:02:33 +0100 |
commit | b2fdfcf7787ab834ea35c73cb8ef174d56f8b67a (patch) | |
tree | 3421998392fa2b926e9e87fdc4119bd9cf796428 /HACKING | |
parent | 91dff97bfcc535d452ad6817b8743000e3713c03 (diff) | |
download | archweb-b2fdfcf7787ab834ea35c73cb8ef174d56f8b67a.tar.gz archweb-b2fdfcf7787ab834ea35c73cb8ef174d56f8b67a.tar.xz |
Added hacking doc.
go me
Diffstat (limited to 'HACKING')
-rw-r--r-- | HACKING | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -0,0 +1,16 @@ +Contributing +====================== + +Coding Style +------------ + +1. All code should be indented with spaces. This is effectively the following VIM modeline: + /* vim: set ai ts=4 sw=4 et: */ + +2. Recommend removing trailing whitespace. Here is an example for .vimrc + autocmd BufWritePre *.py normal m`:%s/\s\+$//e `` + + + + +vim: set ai ts=4 sw=4 et: |