Skip to content

benmcp/gulp-pylint

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Gulp Pylint

A gulp task runner for Pylint.

Getting Started

Prerequisites

Install pylint on your machine if you don't already have it. You can get more details here

pip install pylint

How to use this

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({}));
});

Running the tests

npm test

TODO

  • Provide examples
  • Increase the level of customisation

License

This project is licensed under the MIT License

About

A gulp task runner for Pylint

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published