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
Alternatively instead of turning 'no-console' off, you can allow. In the .eslintrc.js file put
rules: { "no-console": [ "warn", { "allow": ["clear", "info", "error", "dir", "trace", "log"] } ] }
This will allow you to do console.log and console.clear etc without throwing errors.
console.log
console.clear