mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
12 lines
237 B
JavaScript
12 lines
237 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'scope-enum': [
|
|
2,
|
|
'always',
|
|
['root', 'dashboard', 'lander', 'superadmin', 'pockethost'],
|
|
],
|
|
'scope-empty': [2, 'never'],
|
|
},
|
|
}
|