-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.commitlintrc.yaml
30 lines (30 loc) · 1006 Bytes
/
.commitlintrc.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
extends:
- "@commitlint/config-conventional"
rules:
type-enum:
- 2
- always
- - build
- chore
- ci
- docs
- feat
- fix
- perf
- refactor
- release
- revert
- test
help: |
**Possible types**:
`build`: Changes that affect the build system or external dependencies (example scopes: yarn, npm)
`chore`: No production code change. Updating grunt tasks etc;
`ci`: Changes to our CI configuration files and scripts (example scopes: Github Actions, Travis, Circle CI, BrowserStack, SauceLabs)
`docs`: Adds or alters documentation. (example scopes: readme, worker, code_of_conduct, contributors)
`feat`: Adds a new feature.
`fix`: Solves a bug.
`perf`: Improves performance.
`refactor`: Rewrites code without feature, performance or bug changes.
`release`:
`revert`: Changes that reverting other changes
`test`: Adds or modifies tests. (example scopes: functionals, unit-tests)