mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 22:10:07 +00:00
10 lines
230 B
JavaScript
10 lines
230 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'scope-enum': [
|
|
2,
|
|
'always',
|
|
['devtools', 'devtools/build', 'docs', 'metrics_server', 'sentry_webhook', 'server'],
|
|
],
|
|
},
|
|
};
|