-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.commitlintrc.yml
34 lines (34 loc) · 1.07 KB
/
.commitlintrc.yml
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
31
32
33
34
---
extends:
- '@commitlint/config-conventional'
rules:
subject-case: [2, 'always', 'sentence-case']
type-enum:
- 2
- always
- - build
- chore
- ci
- docs
- feat
- fix
- perf
- refactor
- revert
- style
- test
help: |
**Possible types**:
`chore`: Improves existing functions or features
(Not for new features, bug fixes, or refactoring)
`ci`: Changes CI configuration files and scripts
(relevanat scopes: build, tooling, travis, azure, github)
`docs`: Adds or alters documentation.
`feat`: Adds a new user facing feature.
`fix`: Solves a user facing bug in previously released code
(Not for use if the bug isn't in master yet, clutters changelog)
`perf`: Improves performance.
`refactor`: Rewrites code without feature, performance, or bug changes.
`revert`: Changes that reverting other changes
`style`: Improves code formatting, white-space.
`test`: Adds or modifies tests.