1{ 2 "extends": ["@commitlint/config-conventional"], 3 "rules": { 4 "type-enum": [ 5 2, 6 "always", 7 [ 8 "ci", 9 "chore", 10 "docs", 11 "feat", 12 "fix", 13 "perf", 14 "refactor", 15 "revert", 16 "style" 17 ] 18 ] 19 } 20} 21