Standards or rules for commit messages
<aside> 💡 We follow commit standards based on conventional commits, which are enforced using husky and commitlint.
</aside>
<aside> 💡 master branch should always be deployable so merge only when feature is fully ready.
</aside>
<type>[optional scope]: <description>
BLANK LINE
[optional body]
BLANK LINE
[optional footer(s)]
examples:
There is no hard rule for body, just write it brief and accurate using present tense
Added new event to $browser:
Breaks $browser.onHashChange, which was removed (use onUrlChange instead)