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
In package.json you will find an eslintConfig line. Your 'rules' line can go in there like this:
eslintConfig
"eslintConfig": { ... "extends": [ "eslint:recommended" ], "rules": { "no-console": "off" }, ... },