From 55fa42fe2470db0bb28f5501e5020b152dfe0378 Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Sat, 27 Mar 2021 11:12:30 -0400 Subject: [PATCH] Fix lint --- commands/other/noop.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/other/noop.js b/commands/other/noop.js index 5551e3ad..abc1cc4e 100644 --- a/commands/other/noop.js +++ b/commands/other/noop.js @@ -12,6 +12,6 @@ module.exports = class NoopCommand extends Command { } run() { - return; + return; // eslint-disable-line no-useless-return } };