Skip to content

Commit

Permalink
backstage: disallow chore commits, introduce backstage commits
Browse files Browse the repository at this point in the history
  • Loading branch information
apaleslimghost authored May 29, 2024
1 parent a996e92 commit 04ef8c3
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1,21 @@
module.exports = { extends: ['@commitlint/config-conventional'] }
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'type-enum': [
'Error',
'always',
[
'backstage',
'build',
'ci',
'docs',
'feat',
'fix',
'perf',
'refactor',
'revert',
'style',
'test',
],
],
}

0 comments on commit 04ef8c3

Please sign in to comment.