Automating Pylint with Gulp.js
Automating Pylint (and other Python Tasks) can be achieved with several viable python-based methods, but what if we used Gulp.js? The following code snippet gathers runs Pylint on the set of python files defined by pySource. var gulp = require('gulp'), shell = require('gulp-shell'); gulp.task("pylint", function() { log('Linting with pylint ->…