Skip to content

Commit 50b4838

Browse files
committed
fix lint
1 parent 8517cce commit 50b4838

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

auth_service.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ authWebService.use((req, res, next) => {
9898
if (req.method === 'OPTIONS') {
9999
debug('responding to OPTIONS request');
100100
res.send(204);
101-
return
101+
return;
102102
}
103103
next();
104104
});

eslint.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ module.exports = defineConfig([
4141
},
4242
],
4343
"no-trailing-spaces": "error",
44+
"semi": ["error", "always"],
4445
},
4546
},
4647
globalIgnores(["**/public", "lib/About.js", "lib/FieldDB.js"]),

lib/user.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ function createCouchDBUser({
140140
headers: {
141141
'x-request-id': req.id || '',
142142
},
143-
url: couchConnectUrl,
143+
url: couchConnectUrl,
144144
}).use(`${user.username}-activity_feed`);
145145
return activityDb.insert({
146146
admins: {

0 commit comments

Comments
 (0)