- Comments
- All functions are named with
underscore_case
syntax. - Private functions are prefixed with
_
. - Modules always are bundled.
- Variables are
const
by default andlet
when necessary. - All variables are named with
underscore_case
syntax. - Private variables are prefixed with
_
.
- When a code section is reused, it must create a new module or component.
- Imports are sorted by type and separated by an empty line.
- Global constant are stored in a file and are
UPPERCASED
.