pockethost/commitlint.config.cjs
2024-06-05 17:55:44 -07:00

12 lines
247 B
JavaScript

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