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 ->…

Make It Easy

Building a successful product is usually complicated business.  With any luck a project will have an automated deployment process.  This however is only part of the equation.  Another significant part would be an automated build process. Long Term Success Long term success means making it easy for new people to…