Angularjs code/naming conventions
- by Dalorzo
Does anyone know if exists any official or most accepted reference for Angular naming conventions to use when we build our applications?
Angular has a lot of different type of components such as filters, directives, services and so on. Wouldn't you agree that having a reference naming convention when we implement them in our applications will make sense?
For example:
If we need to create new filters how should we name them like [Something]Filter or filter[Something] or something else?
And same applies for Controllers, Services, Directives and so on.
Other things I wonder about is if variables/functions that belongs to the scope should have an special prefix or suffix. In some situations it may be useful to have a way to differentiate them from functions and other (none angular code).