disable no unused vars
This commit is contained in:
parent
0740dcb664
commit
95447086cf
1 changed files with 1 additions and 3 deletions
|
@ -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
|
||||
|
||||
}
|
||||
};
|
Loading…
Reference in a new issue