archweb/HACKING

17 lines
389 B
Plaintext
Raw Normal View History

2007-11-07 03:02:33 +01:00
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 ``
2008-10-11 00:38:08 +02:00
3. Wrap lines at 80 characters MAXIMUM
2007-11-07 03:02:33 +01:00
vim: set ai ts=4 sw=4 et: