-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.commitlintrc.yaml
More file actions
27 lines (27 loc) · 912 Bytes
/
.commitlintrc.yaml
File metadata and controls
27 lines (27 loc) · 912 Bytes
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
# -*- mode: yaml; fill-column: 80; coding: utf-8; -*-
---
extends:
- '@commitlint/config-conventional'
rules:
body-max-line-length: [2, always, 80]
footer-max-line-length: [2, always, 80]
header-max-length: [1, always, 72]
type-enum:
- 2
- always
- - chore
- docs
- feat
- fix
- refactor
- revert
- style
help: |
**Possible types**:
`chore`: updates that don't impact configuration or installations
`docs`: updates to documentation for config or installation
`feat`: updates that modify config, installations, etc.
`fix`: updates that fix config or installation of pre-existing tools/languages/etc.
`refactor`: updates that refactor scripts, organization, etc.
`revert`: changes that revert previous changes
`style`: updates that improve formatting, white space, etc.