🎨登陆页面以及用户列表操作

This commit is contained in:
coward 2024-05-18 01:12:15 +08:00
parent 316ff4a2b2
commit 6a675d0418

View File

@ -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", []]
}
};