CMD opens window store when I type python

Today when I tried to run a simple code on Sublime Text 3, the following message appeared: Python was not found but can be installed from the Microsoft Store: https://go.microsoft.com/fwlink?linkID=2082640 And when I type Python in CMD, it opens the Windows Store for me to download Python 3.7. This problem started today for no good … Read more

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