I\'m using eslint with Sublime Text 3 and I am writing gulpfile.js.
gulpfile.js
/*eslint-env node*/ var gulp = require(\'gulp\'); gulp.task(\'default\', fu
The following works with ESLint in VSCode if you want to disable the rule for just one line.
To disable the next line:
// eslint-disable-next-line no-console console.log('hello world');
To disable the current line:
console.log('hello world'); // eslint-disable-line no-console