mirror of
https://github.com/pockethost/pockethost.git
synced 2025-03-30 15:08:30 +00:00
23 lines
399 B
JavaScript
23 lines
399 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'scope-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'root',
|
|
'pockethost',
|
|
'console-logger',
|
|
'auto-admin',
|
|
'launcher-spawn',
|
|
'cfr-logger',
|
|
`template`,
|
|
`maildev`,
|
|
'ftp-server',
|
|
'multi',
|
|
],
|
|
],
|
|
'scope-empty': [2, 'never'],
|
|
},
|
|
}
|