A gulp task runner for Pylint.
Install pylint on your machine if you don't already have it. You can get more details here
pip install pylint
Add the below to your gulpfile:
import gulp from 'gulp';
import PyLint from 'gulp-pylint';
gulp.task("pylint", function() {
gulp.src('test/*.py', {read: true})
.pipe(PyLint({}));
});
npm test
- Provide examples
- Increase the level of customisation
This project is licensed under the MIT License