Skip to content

Commit 6f3388a

Browse files
committed
ci(commitlint): allow fixup commits
ref: #MANAGER-15915 Signed-off-by: Thibault Barske <[email protected]>
1 parent 634e2eb commit 6f3388a

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.commitlintrc.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,8 @@ module.exports = {
1818
'type-enum': [2, 'always', COMMIT_TYPES],
1919
'header-max-length': [2, 'always', 100],
2020
'footer-leading-blank' : [2, 'always']
21-
}
22-
};
21+
},
22+
ignores: [
23+
(c) => c.startsWith('fixup!'),
24+
],
25+
};

0 commit comments

Comments
 (0)