First of all, thank you for considering contributing! Below are guidelines for helping you contribute to this repository.
This is adapted from the Angular team’s commit guidelines
A commit message consists of a header, a body, and a possible footer, separated by a blank line.
<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>
<type>
value | description |
---|---|
feat | feature |
fix | bug fix |
docs | documentation |
style | formatting, missing semi colons, … |
test | adding missing tests |
chore | maintenance |
<scope>
Scope can be anything specifying what the commit affects. For example renderBadge, tableInput, background, css, …
Use * if there isn’t a more fitting scope.