Classes:
- Example:
Component
,App
- Camel case with first letter uppercase
Interfaces:
- Follow the same rules as Classes
- Only the interfaces inside
domain/interfaces
should haveI
in the name to identifying it as an interface.
Methods and functions:
- Example:
bootstrap
,someMethod
- Should be camel case with first letter lowercase
Constants:
- Example:
CORE_DIRECTIVES
- Should be all uppercase with SNAKE_CASE
File:
- ...