lint: Run eslint --fix

This commit is contained in:
Richard Hansen 2022-02-21 00:36:14 -05:00
parent 8eb310854d
commit c8211f2898
9 changed files with 23 additions and 23 deletions

View file

@ -73,65 +73,65 @@ version['1'] = Object.assign({},
setPublicStatus: ['padID', 'publicStatus'],
getPublicStatus: ['padID'],
listAuthorsOfPad: ['padID'],
padUsersCount: ['padID']}
padUsersCount: ['padID']},
);
version['1.1'] = Object.assign({}, version['1'],
{getAuthorName: ['authorID'],
padUsers: ['padID'],
sendClientsMessage: ['padID', 'msg'],
listAllGroups: []}
listAllGroups: []},
);
version['1.2'] = Object.assign({}, version['1.1'],
{checkToken: []}
{checkToken: []},
);
version['1.2.1'] = Object.assign({}, version['1.2'],
{listAllPads: []}
{listAllPads: []},
);
version['1.2.7'] = Object.assign({}, version['1.2.1'],
{createDiffHTML: ['padID', 'startRev', 'endRev'],
getChatHistory: ['padID', 'start', 'end'],
getChatHead: ['padID']}
getChatHead: ['padID']},
);
version['1.2.8'] = Object.assign({}, version['1.2.7'],
{getAttributePool: ['padID'],
getRevisionChangeset: ['padID', 'rev']}
getRevisionChangeset: ['padID', 'rev']},
);
version['1.2.9'] = Object.assign({}, version['1.2.8'],
{copyPad: ['sourceID', 'destinationID', 'force'],
movePad: ['sourceID', 'destinationID', 'force']}
movePad: ['sourceID', 'destinationID', 'force']},
);
version['1.2.10'] = Object.assign({}, version['1.2.9'],
{getPadID: ['roID']}
{getPadID: ['roID']},
);
version['1.2.11'] = Object.assign({}, version['1.2.10'],
{getSavedRevisionsCount: ['padID'],
listSavedRevisions: ['padID'],
saveRevision: ['padID', 'rev'],
restoreRevision: ['padID', 'rev']}
restoreRevision: ['padID', 'rev']},
);
version['1.2.12'] = Object.assign({}, version['1.2.11'],
{appendChatMessage: ['padID', 'text', 'authorID', 'time']}
{appendChatMessage: ['padID', 'text', 'authorID', 'time']},
);
version['1.2.13'] = Object.assign({}, version['1.2.12'],
{appendText: ['padID', 'text']}
{appendText: ['padID', 'text']},
);
version['1.2.14'] = Object.assign({}, version['1.2.13'],
{getStats: []}
{getStats: []},
);
version['1.2.15'] = Object.assign({}, version['1.2.14'],
{copyPadWithoutHistory: ['sourceID', 'destinationID', 'force']}
{copyPadWithoutHistory: ['sourceID', 'destinationID', 'force']},
);
version['1.3.0'] = {

View file

@ -1287,7 +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

View file

@ -36,7 +36,7 @@ exports.expressPreSession = async (hookName, {app}) => {
'static',
'skins',
settings.skinName,
'robots.txt'
'robots.txt',
);
res.sendFile(filePath, (err) => {
// there is no custom robots.txt, send the default robots.txt which dissallows all

View file

@ -316,7 +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;

View file

@ -103,8 +103,8 @@ _.extend(Button.prototype, {
tag('button', {
'class': ` ${this.attributes.class}`,
'data-l10n-id': this.attributes.localizationId,
})
)
}),
),
);
},
});
@ -145,7 +145,7 @@ _.extend(SelectButton.prototype, Button.prototype, {
'data-type': 'select',
};
return tag('li', attributes,
this.select({id: this.attributes.selectId})
this.select({id: this.attributes.selectId}),
);
},
});