Gulp task for isort.
npm install gulp-isort
var gulp = require('gulp');
var gulpIsort = require('gulp-isort');
gulp.task('isort', function () {
return gulp.src('**/*')
.pipe(gulpIsort())
.pipe(gulpIsort.failOnError());
});
Gulp Isort is Copyright (c) 2016 sophilabs, inc. It is free software, and may be redistributed under the terms specified in the license file.
Gulp Isort is maintained and funded by sophilabs, inc. The names and logos for sophilabs are trademarks of sophilabs, inc.