summaryrefslogtreecommitdiffstats
path: root/HACKING
diff options
context:
space:
mode:
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING16
1 files changed, 16 insertions, 0 deletions
diff --git a/HACKING b/HACKING
new file mode 100644
index 0000000..fc076b7
--- /dev/null
+++ b/HACKING
@@ -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: