Updated CodeConventions (markdown)

Florian Nücke 2014-01-27 04:29:47 -08:00
parent dee7fbcbd8
commit 0c24523368

@ -9,7 +9,7 @@ Lua
- Do use brackets in functions calls even if it's not necessary.
- Name variables for what they are, don't include type markers in them, i.e. *do not* use Hungarian notation.
- Nice to have: sort your requires alphabetically (OCD!)
- Only comment if it's something complicated/non obvious. Keep in mind that comments increase file size, which increases the amount of ram required to run your program!
- Only comment if it's something complicated/non obvious. Keep in mind that comments increase file size, which increases the amount of RAM required to run your program!
Bad:
```lua