From 95447086cf8cc6c6cf8ba58124cb6c1efdb62736 Mon Sep 17 00:00:00 2001 From: Emily J Date: Wed, 28 Oct 2020 18:01:22 +1100 Subject: [PATCH] disable no unused vars --- examples/exampleCommand.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/examples/exampleCommand.js b/examples/exampleCommand.js index 7f514e3..6a72226 100644 --- a/examples/exampleCommand.js +++ b/examples/exampleCommand.js @@ -1,5 +1,3 @@ -/* eslint-disable */ - // Don't modify the name or category variables, they are set automatically by the loaders. module.exports = class { constructor (name, category) { @@ -19,7 +17,7 @@ module.exports = class { } // Main function that is called by the message handler when the command is executed - run (client, message, args, data) { + run (client, message, args, data) { //eslint-disable-line no-unused-vars } }; \ No newline at end of file