blob: 2731a584f98b89674f456858a74c9575500b5401 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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 ``
3. Wrap lines at 80 characters MAXIMUM
vim: set ai ts=4 sw=4 et:
|