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
For vue-cli 3 open package.json and under section eslintConfig put no-console under rules and restart dev server (npm run serve or yarn serve)
package.json
eslintConfig
no-console
rules
npm run serve
yarn serve
... "eslintConfig": { ... "rules": { "no-console": "off" }, ...