Skip to content

Commit 138844d

Browse files
committed
commitlint: temp disable footer-refs-validity
Because of: #125
1 parent 09e7c8b commit 138844d

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

commitlint.config.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,8 @@ module.exports = {
2929
],
3030
// temporarily disabled because of https://github.com/nblockchain/conventions/issues/118
3131
"footer-notes-misplacement": [RuleConfigSeverity.Disabled, "always"],
32-
"footer-refs-validity": [RuleConfigSeverity.Error, "always"],
32+
// temporarily disabled because of https://github.com/nblockchain/conventions/issues/125
33+
"footer-refs-validity": [RuleConfigSeverity.Disabled, "always"],
3334
"header-max-length-with-suggestions": [
3435
RuleConfigSeverity.Error,
3536
"always",

commitlint/plugins.test.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -511,6 +511,7 @@ test("footer-notes-misplacement-4", () => {
511511
});
512512
*/
513513

514+
/* temporarily disabled rule because of https://github.com/nblockchain/conventions/issues/125
514515
test("footer-refs-validity1", () => {
515516
let commmitMsgWithCorrectFooter =
516517
"foo: this is only a title" +
@@ -582,6 +583,7 @@ test("footer-refs-validity6", () => {
582583
);
583584
expect(footerRefsValidity6.status).toBe(0);
584585
});
586+
*/
585587

586588
test("prefer-slash-over-backslash1", () => {
587589
let commitMsgWithBackslash = "foo\\bar: bla bla bla";

0 commit comments

Comments
 (0)