Skip to content

Commit e24e4d3

Browse files
committed
chore: don't disable lint relu
1 parent 2ef9ad0 commit e24e4d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/events/projects/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const eClient = util.getElasticSearchClient();
2121
* @param {Object} msg event payload which is essentially a project in JSON format
2222
* @returns {undefined}
2323
*/
24-
const indexProject = Promise.coroutine(function* (logger, msg) { // eslint-disable-line func-names, no-unused-vars
24+
const indexProject = Promise.coroutine(function* (logger, msg) { // eslint-disable-line func-names
2525
const data = JSON.parse(msg.content.toString());
2626
const userIds = data.members ? data.members.map(single => `userId:${single.userId}`) : [];
2727
try {

0 commit comments

Comments
 (0)