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

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 // @ts-check
// /** @type {import("@commitlint/types").UserConfig} */ /** @type {import("@commitlint/types").UserConfig} */
// export default { export default {
// ignores: [commit => commit.includes("init")], ignores: [commit => commit.includes("init")],
// extends: ["@commitlint/config-conventional"], extends: ["@commitlint/config-conventional"],
// rules: { rules: {
// "body-leading-blank": [2, "always"], "body-leading-blank": [2, "always"],
// "footer-leading-blank": [1, "always"], "footer-leading-blank": [1, "always"],
// "header-max-length": [2, "always", 108], "header-max-length": [2, "always", 108],
// "subject-empty": [2, "never"], "subject-empty": [2, "never"],
// "type-empty": [2, "never"], "type-empty": [2, "never"],
// "type-enum": [2, "always", []] "type-enum": [2, "always", []]
// } }
// }; };