mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
21 lines
351 B
JavaScript
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'],
|
|
},
|
|
}
|