diff --git a/src/node/handler/PadMessageHandler.js b/src/node/handler/PadMessageHandler.js index c7ee1973b..c4d141293 100644 --- a/src/node/handler/PadMessageHandler.js +++ b/src/node/handler/PadMessageHandler.js @@ -1287,8 +1287,7 @@ const composePadChangesets = async (padId, startNum, endNum) => { const changesets = {}; await Promise.all(changesetsNeeded.map( (revNum) => pad.getRevisionChangeset(revNum) - .then((changeset) => changesets[revNum] = changeset), - )); + .then((changeset) => changesets[revNum] = changeset))); // compose Changesets let r; diff --git a/src/node/hooks/express/specialpages.js b/src/node/hooks/express/specialpages.js index 3c5dfcf7e..4f41d8cd0 100644 --- a/src/node/hooks/express/specialpages.js +++ b/src/node/hooks/express/specialpages.js @@ -30,14 +30,8 @@ exports.expressPreSession = async (hookName, {app}) => { }); app.get('/robots.txt', (req, res) => { - let filePath = path.join( - settings.root, - 'src', - 'static', - 'skins', - settings.skinName, - 'robots.txt', - ); + let filePath = + path.join(settings.root, 'src', 'static', 'skins', settings.skinName, 'robots.txt'); res.sendFile(filePath, (err) => { // there is no custom robots.txt, send the default robots.txt which dissallows all if (err) { diff --git a/src/node/utils/ExportHtml.js b/src/node/utils/ExportHtml.js index 97a483fc5..d14f40e6e 100644 --- a/src/node/utils/ExportHtml.js +++ b/src/node/utils/ExportHtml.js @@ -316,8 +316,7 @@ const getHTMLFromAtext = async (pad, atext, authorColors) => { if ((!prevLine || prevLine.listLevel !== line.listLevel) || (line.listTypeName !== prevLine.listTypeName)) { const exists = _.find(openLists, (item) => ( - item.level === line.listLevel && item.type === line.listTypeName), - ); + item.level === line.listLevel && item.type === line.listTypeName)); if (!exists) { let prevLevel = 0; if (prevLine && prevLine.listLevel) { diff --git a/src/node/utils/toolbar.js b/src/node/utils/toolbar.js index 037318cfa..40a476878 100644 --- a/src/node/utils/toolbar.js +++ b/src/node/utils/toolbar.js @@ -103,9 +103,7 @@ _.extend(Button.prototype, { tag('button', { 'class': ` ${this.attributes.class}`, 'data-l10n-id': this.attributes.localizationId, - }), - ), - ); + }))); }, }); @@ -144,9 +142,7 @@ _.extend(SelectButton.prototype, Button.prototype, { 'data-key': this.attributes.command, 'data-type': 'select', }; - return tag('li', attributes, - this.select({id: this.attributes.selectId}), - ); + return tag('li', attributes, this.select({id: this.attributes.selectId})); }, }); diff --git a/src/tests/frontend/specs/adminupdateplugins.js b/src/tests/frontend/specs/adminupdateplugins.js index 8381e5dc6..65e498ff4 100755 --- a/src/tests/frontend/specs/adminupdateplugins.js +++ b/src/tests/frontend/specs/adminupdateplugins.js @@ -64,9 +64,7 @@ describe('Plugins page', function () { // Ensure it's a higher minor version IE 0.3.x as 0.2.x was installed // Coverage for https://github.com/ether/etherpad-lite/issues/4536 - await helper.waitForPromise(() => parseInt(helper.admin$( - '.ep_align .version', - ) + await helper.waitForPromise(() => parseInt(helper.admin$('.ep_align .version') .text() .split('.')[1]) > minorVersionBefore, 60000, 1000); // allow 50 seconds, check every 1 second. diff --git a/src/tests/frontend/specs/change_user_color.js b/src/tests/frontend/specs/change_user_color.js index 4c2ad2f2e..6d73fb805 100644 --- a/src/tests/frontend/specs/change_user_color.js +++ b/src/tests/frontend/specs/change_user_color.js @@ -92,8 +92,7 @@ describe('change user color', function () { $chatInput.sendkeys('{enter}'); // wait until the chat message shows up - helper.waitFor(() => chrome$('#chattext').children('p').length !== 0, - ).done(() => { + helper.waitFor(() => chrome$('#chattext').children('p').length !== 0).done(() => { const $firstChatMessage = chrome$('#chattext').children('p'); // expect the first chat message to be of the user's color expect($firstChatMessage.css('background-color')).to.be(testColorRGB); diff --git a/src/tests/frontend/specs/easysync-mutations.js b/src/tests/frontend/specs/easysync-mutations.js index f293fc8ee..c10d34519 100644 --- a/src/tests/frontend/specs/easysync-mutations.js +++ b/src/tests/frontend/specs/easysync-mutations.js @@ -227,8 +227,8 @@ describe('easysync-mutations', function () { // turn 123\n 456\n 789\n into 123\n 456\n 789\n runMutateAttributionTest(1, - ['bold,true'], 'Z:c>0|1=4=1*0=1$', ['|1+4', '|1+4', '|1+4'], ['|1+4', '+1*0+1|1+2', '|1+4'], - ); + ['bold,true'], 'Z:c>0|1=4=1*0=1$', ['|1+4', '|1+4', '|1+4'], + ['|1+4', '+1*0+1|1+2', '|1+4']); // make a document bold runMutateAttributionTest(2,