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"] | ||||
|     }) | ||||
| 			aliases: ['hallo'] | ||||
| 		}); | ||||
| 	} | ||||
| 
 | ||||
| 	async run(message, args) { | ||||
|     message.channel.send("Hello"); | ||||
|   } | ||||
| 		message.channel.send('Hello'); | ||||
| 	} | ||||
| 
 | ||||
| }; | ||||
|  |  | |||
|  | @ -1,5 +1,5 @@ | |||
| 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 { | ||||
| 
 | ||||
|  | @ -7,4 +7,4 @@ module.exports = class extends Command { | |||
| 		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."; | ||||
| 		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.`) | ||||
|   } | ||||
| 		throw new Error(`Command ${this.name} doesn't provide a run method.`); | ||||
| 	} | ||||
| 
 | ||||
| }; | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue