mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
* okay put this up see where we're at * update builds here * check browserslist * add badge * Update build_and_test_debug.yml * scopes & electron version
20 lines
357 B
JavaScript
20 lines
357 B
JavaScript
module.exports = {
|
|
extends: ['@commitlint/config-conventional'],
|
|
rules: {
|
|
'scope-enum': [
|
|
2,
|
|
'always',
|
|
[
|
|
'devtools',
|
|
'devtools/build',
|
|
'docs',
|
|
'manager',
|
|
'manager/electron',
|
|
'manager/web',
|
|
'metrics_server',
|
|
'sentry_webhook',
|
|
'server',
|
|
],
|
|
],
|
|
},
|
|
};
|