add HACKING - coding style

This commit is contained in:
Alexandre Quessy
2013-11-23 15:18:30 -05:00
parent 3bd232468e
commit 8737821e05
+9
View File
@@ -0,0 +1,9 @@
Coding style
============
* indent with 2 spaces
* opening curly braces on a new line
* function and method names camelCase, with lowercase first letter
* class names CamelCase
* private data members with an underscore as a prefix: _likeThis
* file names all lowercase