From 5483c509c0a78ede4df85a99bab1333735ad2ab2 Mon Sep 17 00:00:00 2001 From: 1computer1 Date: Tue, 12 Mar 2019 12:51:39 -0400 Subject: [PATCH] Disable eslint for a line --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 247b808..dd607c3 100644 --- a/src/index.js +++ b/src/index.js @@ -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();