config(misc): commitlint.config.js - Increase body-line-length limit to 300

This commit is contained in:
2020-10-05 20:26:29 +05:30
parent 919c9c253e
commit 4fbee80653
+3 -2
View File
@@ -18,7 +18,8 @@ module.exports = {
"test", "test",
], ],
], ],
"scope-enum": [1, "always", ["app", "completion", "source", "types", "engine262", "misc"]], "scope-enum": [2, "always", ["app", "completion", "source", "types", "engine262", "misc"]],
"subject-case": [0, "always"] "subject-case": [0, "always"],
"body-max-line-length": [1, "always", 300]
}, },
}; };