diff --git a/commitlint.config.js b/commitlint.config.js index a6ff741..ac261a3 100644 --- a/commitlint.config.js +++ b/commitlint.config.js @@ -1,15 +1,15 @@ // @ts-check -// /** @type {import("@commitlint/types").UserConfig} */ -// export default { -// ignores: [commit => commit.includes("init")], -// extends: ["@commitlint/config-conventional"], -// rules: { -// "body-leading-blank": [2, "always"], -// "footer-leading-blank": [1, "always"], -// "header-max-length": [2, "always", 108], -// "subject-empty": [2, "never"], -// "type-empty": [2, "never"], -// "type-enum": [2, "always", []] -// } -// }; +/** @type {import("@commitlint/types").UserConfig} */ +export default { + ignores: [commit => commit.includes("init")], + extends: ["@commitlint/config-conventional"], + rules: { + "body-leading-blank": [2, "always"], + "footer-leading-blank": [1, "always"], + "header-max-length": [2, "always", 108], + "subject-empty": [2, "never"], + "type-empty": [2, "never"], + "type-enum": [2, "always", []] + } +};