lint: Re-run `eslint --fix`

pull/5049/head
Richard Hansen 2021-05-11 15:44:50 -04:00 committed by webzwo0i
parent 30eadad79d
commit 59c03bde20
6 changed files with 6 additions and 8 deletions

View File

@ -14,7 +14,7 @@ const currentTime = new Date();
const diffTime = Math.abs(currentTime - date);
const diffDays = Math.ceil(diffTime / (1000 * 60 * 60 * 24));
if (diffDays > (365 * 2)) {
console.log(`${name}, ${plugins[plugin].data.maintainers[0].email}`)
console.log(`${name}, ${plugins[plugin].data.maintainers[0].email}`);
}
}
})();

View File

@ -156,7 +156,7 @@ async function mapAuthorWithDBKey(mapperkey, mapper) {
// return the author
return {authorID: author};
};
}
/**
* Internal function that creates the database entry for an author

View File

@ -23,7 +23,7 @@ const staticPathsRE = new RegExp(`^/(?:${[
'robots.txt',
'static/.*',
'stats/?',
'tests/frontend(?:/.*)?'
'tests/frontend(?:/.*)?',
].join('|')})$`);
exports.normalizeAuthzLevel = (level) => {

View File

@ -55,5 +55,4 @@ describe(__filename, function () {
}
});
});
});

View File

@ -87,7 +87,6 @@ describe('Chat messages and UI', function () {
xit('Checks showChat=false URL Parameter hides chat then' +
' when removed it shows chat', async function () {
// give it a second to save the username on the server side
await new Promise((resolve) => setTimeout(resolve, 3000));