mirror of
https://github.com/keanuplayz/TravBot-v3.git
synced 2024-08-15 02:33:12 +00:00
Fixed ESLint errors.
This commit is contained in:
parent
49a5b5e3b7
commit
44c6dfab1b
3 changed files with 33 additions and 29 deletions
|
@ -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');
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -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 })}\``);
|
||||
}
|
||||
|
||||
}
|
||||
};
|
||||
|
|
|
@ -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.`);
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue