1.0.7 • Published 6 years ago

gulp-pep8 v1.0.7

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

Gulp Pep8

PRs Welcome Build Status License: MIT

:closed_book: Gulp plugin for pep8 coding standards

Installation

npm install gulp-pep8

Usage

const gulpPep8 = require('gulp-pep8')
const gulp = require('gulp');

gulp.task('lint', () => {
  return gulp.src('*.py')
    .pipe(gulpPep8());
});

With options

To use with custom options, we pass them as a key, value pair object i.e

gulp.task('lint', () => {
  return gulp.src('*.py')
    .pipe(gulpPep8({
        ignore: ['E501', 'E731', ...],
        onFail: () => {
        // when we get errors
        }
        ...
      }));
});

License

Gulp pep8 is licensed under the terms of MIT license and is available for free.

1.0.7

6 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago