chore: add linters and ignores

This commit is contained in:
pat-s
2025-03-06 21:59:42 +01:00
parent f900633803
commit 82ed342b11
9 changed files with 384 additions and 0 deletions

7
.commitlintrc.json Normal file
View File

@ -0,0 +1,7 @@
{
"extends": ["@commitlint/config-conventional"],
"rules": {
"type-enum": [2, "always", ["feat", "fix", "chore", "docs", "style", "refactor", "test", "perf", "ci", "WIP"]],
"type-case": [0, "always", "lower-case"]
}
}