prepare repo

This commit is contained in:
2026-02-10 02:18:38 +01:00
parent ef5e98ad5d
commit 781a4c3a4e
10 changed files with 835 additions and 123 deletions

12
commitlint.config.cjs Normal file
View File

@ -0,0 +1,12 @@
module.exports = {
extends: ["@commitlint/config-conventional"],
rules: {
"type-enum": [
2,
"always",
["feat", "fix", "refactor", "perf", "test", "docs", "build", "ci", "chore", "revert"],
],
"scope-empty": [2, "never"],
"subject-empty": [2, "never"],
},
}