Skip to content

Commit

Permalink
feat: enable commit msg lint
Browse files Browse the repository at this point in the history
  • Loading branch information
marsal committed May 28, 2024
1 parent 7042a7c commit 3bc1414
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,21 +1 @@
module.exports = {
rules: {
'type-enum': [
2,
'always',
[
'feat',
'fix',
'docs',
'chore',
'style',
'refactor',
'ci',
'test',
'revert',
'perf',
'vercel',
],
],
},
};
module.exports = {extends: ['@commitlint/config-conventional']};

0 comments on commit 3bc1414

Please sign in to comment.