mirror of
https://github.com/bendtherules/completion-viz.git
synced 2026-08-18 13:42:51 +00:00
26 lines
582 B
JavaScript
26 lines
582 B
JavaScript
module.exports = {
|
|
extends: ["@commitlint/config-conventional"],
|
|
rules: {
|
|
"type-enum": [
|
|
2,
|
|
"always",
|
|
[
|
|
"feat",
|
|
"update", // Update feature
|
|
"fix",
|
|
"config", // config changes like package.json, .eslintrc
|
|
"docs",
|
|
"style",
|
|
"refactor",
|
|
"ci",
|
|
"chore",
|
|
"revert",
|
|
"test",
|
|
],
|
|
],
|
|
"scope-enum": [2, "always", ["app", "completion", "source", "types", "engine262", "misc"]],
|
|
"subject-case": [0, "always"],
|
|
"body-max-line-length": [1, "always", 300]
|
|
},
|
|
};
|