We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f34592 commit 2119164Copy full SHA for 2119164
1 file changed
.commitlintrc.mjs
@@ -0,0 +1,42 @@
1
+export default {
2
+ extends: [
3
+ '@commitlint/config-conventional'
4
+ ],
5
+ ignores: [
6
+ (message) => message.includes('Signed-off-by: dependabot[bot]')
7
8
+ rules: {
9
+ 'header-max-length': [
10
+ 2,
11
+ 'always',
12
+ 72
13
14
+ 'body-max-line-length': [
15
16
17
18
19
+ 'body-leading-blank': [
20
21
+ 'always'
22
23
+ 'type-enum': [
24
25
26
+ [
27
+ 'build',
28
+ 'chore',
29
+ 'ci',
30
+ 'deps',
31
+ 'docs',
32
+ 'feat',
33
+ 'fix',
34
+ 'perf',
35
+ 'refactor',
36
+ 'revert',
37
+ 'style',
38
+ 'test'
39
+ ]
40
41
+ }
42
+};
0 commit comments