pockethost/commitlint.config.cjs
2024-06-05 17:57:02 -07:00

20 lines
318 B
JavaScript

module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'scope-enum': [
2,
'always',
[
'root',
'dashboard',
'lander',
'superadmin',
'pockethost',
'common',
'ga',
],
],
'scope-empty': [2, 'never'],
},
}