From 00c4eb41bbfee1bf049981d9332862fe0aa8d4ac Mon Sep 17 00:00:00 2001 From: Keanu Date: Wed, 1 Jul 2020 11:14:33 +0200 Subject: [PATCH] Fixed more ESLint errors. --- src/Commands/Hello.js | 1 + src/Commands/Utilities/Serverinfo.js | 1 + 2 files changed, 2 insertions(+) diff --git a/src/Commands/Hello.js b/src/Commands/Hello.js index 42e036b..e1eb13e 100644 --- a/src/Commands/Hello.js +++ b/src/Commands/Hello.js @@ -1,3 +1,4 @@ +/* eslint-disable no-unused-vars */ const Command = require('./../Structures/Command.js'); module.exports = class extends Command { diff --git a/src/Commands/Utilities/Serverinfo.js b/src/Commands/Utilities/Serverinfo.js index d38900f..1b566db 100644 --- a/src/Commands/Utilities/Serverinfo.js +++ b/src/Commands/Utilities/Serverinfo.js @@ -1,3 +1,4 @@ +/* eslint-disable no-undef */ /* eslint-disable no-warning-comments */ const Command = require('../../Structures/Command'); const { MessageEmbed } = require('discord.js');