mirror of
https://github.com/OutlineFoundation/outline-server.git
synced 2026-05-13 13:58:57 +00:00
* delete manager and update readme * remove scopes from commitlint * update jobs * Update src/server_manager/README.md Co-authored-by: Vinicius Fortuna <fortuna@users.noreply.github.com> * Update README.md * npx karma * install puppeteer * webpack, too? jeez. * finally --------- Co-authored-by: Vinicius Fortuna <fortuna@users.noreply.github.com>
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'],
|
|
],
|
|
},
|
|
};
|