add conventions?

This commit is contained in:
petrucci4prez 2017-07-16 03:59:40 -04:00
parent 7fa168a925
commit 0ed2b3d5c5
1 changed files with 14 additions and 2 deletions

View File

@ -1,5 +1,17 @@
--CONVENTIONS: --[[
--0: true, 1: false Conventions:
0 is true, 1 is false
Var names:
- Scope:
- local: no underscore
- module: single underscore
- global: double underscore
- required (imported): no underscore (same name as file)
- Mutability
- variable: lowercase
- constant: all caps
--]]
local ABS_PATH = os.getenv('CONKY_LUA_HOME') local ABS_PATH = os.getenv('CONKY_LUA_HOME')