mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-12 18:49:08 +02:00
15 lines
416 B
Plaintext
15 lines
416 B
Plaintext
Contribute to MapMap
|
|
====================
|
|
|
|
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
|
|
* always add spaces between operators such as +, -, /, * casts, etc. (except pointers and references)
|
|
|