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 775f706 commit 42d8407Copy full SHA for 42d8407
commitlint.config.mjs
@@ -1,6 +1,9 @@
1
export default {
2
extends: ["@commitlint/config-conventional"],
3
- ignores: [(msg) => /Signed-off-by: dependabot\[bot]/m.test(msg)],
+ ignores: [
4
+ (msg) => /Signed-off-by: dependabot\[bot]/m.test(msg),
5
+ (msg) => /Co-authored-by:.*Copilot/m.test(msg)
6
+ ],
7
rules: {
8
// Disable the rule that enforces lowercase in subject
9
"subject-case": [0], // 0 = disable, 1 = warn, 2 = error
0 commit comments