pockethost/commitlint.config.cjs

21 lines
351 B
JavaScript

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