Fixed ESLint errors.

This commit is contained in:
Keanu Timmermans 2020-07-01 10:59:42 +02:00
parent 49a5b5e3b7
commit 44c6dfab1b
3 changed files with 33 additions and 29 deletions

View File

@ -1,13 +1,15 @@
const Command = require("./../Structures/Command.js");
const Command = require('./../Structures/Command.js');
module.exports = class extends Command {
constructor(...args) {
super(...args, {
aliases: ["hallo"]
})
}
async run(message, args) {
message.channel.send("Hello");
}
}
constructor(...args) {
super(...args, {
aliases: ['hallo']
});
}
async run(message, args) {
message.channel.send('Hello');
}
};

View File

@ -1,10 +1,10 @@
const Command = require("../../Structures/Command.js");
const ms = require("ms");
const Command = require('../../Structures/Command.js');
const ms = require('ms');
module.exports = class extends Command {
async run(message) {
message.channel.send(`My uptime is \`${ms(this.client.uptime, {long: true})}\``);
}
async run(message) {
message.channel.send(`My uptime is \`${ms(this.client.uptime, { long: true })}\``);
}
}
};

View File

@ -1,15 +1,17 @@
module.exports = class Command {
constructor(client, name, options = {}) {
this.client = client;
this.name = options.name || name;
this.aliases = options.aliases || [];
this.description = options.description || "No description provided.";
this.category = options.category || "Miscellaneous";
this.usage = options.usage || "No usage provided.";
}
// eslint-disable-next-line no-unused-vars
async run(message, args) {
throw new Error(`Command ${this.name} doesn't provide a run method.`)
}
}
constructor(client, name, options = {}) {
this.client = client;
this.name = options.name || name;
this.aliases = options.aliases || [];
this.description = options.description || 'No description provided.';
this.category = options.category || 'Miscellaneous';
this.usage = options.usage || 'No usage provided.';
}
// eslint-disable-next-line no-unused-vars
async run(message, args) {
throw new Error(`Command ${this.name} doesn't provide a run method.`);
}
};