chore: project init

This commit is contained in:
mahyargdz
2025-01-19 09:35:47 +03:30
commit 3fb52961c7
17 changed files with 8052 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
export default {
extends: ["@commitlint/config-conventional"],
rules: {
"subject-case": [2, "always", ["sentence-case", "start-case", "pascal-case", "upper-case", "lower-case", "camel-case"]],
"type-enum": [2, "always", ["add", "build", "chore", "update", "docs", "feat", "fix", "refactor", "revert", "style", "test", "sample"]],
"scope-enum": [1, "always", ["common", "core", "app", "testing", "bug"]],
},
};