diff --git a/commitlint.config.js b/commitlint.config.js deleted file mode 100644 index 1e2ffb534..000000000 --- a/commitlint.config.js +++ /dev/null @@ -1,30 +0,0 @@ -module.exports = { - extends: ['@commitlint/config-conventional'], - rules: { - 'subject-case': [ - 2, - 'never', - [ - 'upper-case', - 'pascal-case', - ] - ], - 'type-enum': [ - 2, - 'always', - [ - 'chore', - 'ci', - 'docs', - 'feat', - 'fix', - 'perf', - 'refactor', - 'revert', - 'squash', - 'style', - 'test' - ] - ] - } -};