Eslint: How to disable “unexpected console statement” in Node.js?

I’m using eslint with Sublime Text 3 and I am writing gulpfile.js. /*eslint-env node*/ var gulp = require(‘gulp’); gulp.task(‘default’, function(){ console.log(‘default task’); }); But eslint keeps showing error : “Error: Unexpected console statement. (no-console)” I found official document here, but I still don’t know how to disable it. /*eslint-env node*/ var gulp = require(‘gulp’); /*eslint … Read more

Comparing the contents of two files in Sublime Text

I have two cloned repositories of two very similar open-source projects, which I have been working on in different instances in Sublime Text 2 to arrive at my desired result. Code from both of these projects was used. I have been using Git as version control for my project, but have not included the original … Read more