Disable eslint for a line

This commit is contained in:
1computer1 2019-03-12 12:51:39 -04:00
parent 4b950e9689
commit 5483c509c0

View file

@ -1,5 +1,5 @@
const CompilerClient = require('./struct/CompilerClient');
const config = require('../config.json');
const client = new CompilerClient(config);
client.once('ready', () => console.log('Comp_iler ready to go!'));
client.once('ready', () => console.log('Comp_iler ready to go!')); // eslint-disable-line no-console
client.start();