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
You should add one rule and add your env:
{ "rules": { "no-console": "off" }, "env": { "browser": true } }
you can add other envs.