mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-20 15:36:16 -04:00
lint: Run eslint --fix
on src/
This commit is contained in:
parent
b8d07a42eb
commit
8e5fd19db2
109 changed files with 9061 additions and 10572 deletions
|
@ -61,13 +61,13 @@ exports.start = async () => {
|
|||
try {
|
||||
await db.init();
|
||||
await plugins.update();
|
||||
console.info('Installed plugins: ' + plugins.formatPluginsWithVersion());
|
||||
console.debug('Installed parts:\n' + plugins.formatParts());
|
||||
console.debug('Installed hooks:\n' + plugins.formatHooks());
|
||||
console.info(`Installed plugins: ${plugins.formatPluginsWithVersion()}`);
|
||||
console.debug(`Installed parts:\n${plugins.formatParts()}`);
|
||||
console.debug(`Installed hooks:\n${plugins.formatHooks()}`);
|
||||
await hooks.aCallAll('loadSettings', {settings});
|
||||
await hooks.aCallAll('createServer');
|
||||
} catch (e) {
|
||||
console.error('exception thrown: ' + e.message);
|
||||
console.error(`exception thrown: ${e.message}`);
|
||||
if (e.stack) console.log(e.stack);
|
||||
process.exit(1);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue