forked from sile-typesetter/sile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.commitlintrc.yml
72 lines (72 loc) · 1.61 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
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
scope-empty: [1, 'never']
scope-enum:
- 1
- 'always'
- - actions
- azure
- backends
- build
- cirrus
- classes
- cli
- core
- debug
- deps
- docker
- fonts
- frames
- images
- i18n
- inputters
- installation
- languages
- manpage
- manual
- math
- measurements
- nodes
- outputters
- packages
- pagebuilders
- pdf
- readme
- release
- settings
- shapers
- tooling
- typesetters
- utilities
help: |
**Possible types**:
`chore`: Improves existing functions or features
(Not for new features, fixes to bugs in releases, or refactoring)
`ci`: Changes CI configuration files and scripts
(relevanat scopes: build, deps, tooling, cirrus, azure, actions)
`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 a release 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.