Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sophilabs/gulp-flake8
Gulp plugin for Flake8
https://github.com/sophilabs/gulp-flake8
flake8 gulp-plugin
Last synced: 18 days ago
JSON representation
Gulp plugin for Flake8
- Host: GitHub
- URL: https://github.com/sophilabs/gulp-flake8
- Owner: sophilabs
- License: mit
- Created: 2016-06-27T17:49:41.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-27T18:06:46.000Z (about 7 years ago)
- Last Synced: 2024-11-17T11:20:12.769Z (about 2 months ago)
- Topics: flake8, gulp-plugin
- Language: JavaScript
- Homepage: https://sophilabs.co/open-source
- Size: 18.6 KB
- Stars: 7
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Gulp Flake8
[![travis][travis-image]][travis-url]
[![coverage][coveralls-image]][coveralls-url]
[![npm][npm-image]][npm-url]
[![downloads][downloads-image]][downloads-url]
[![js-semistandard-style][semi-image]][semi-url]
[![license][license-image]][license-url]
[![dependencies][dependencies-image]][dependencies-url]
[![dev-dependencies][dev-dependencies-image]][dev-dependencies-url]Gulp task for flake8.
## Installation
```bash
npm install gulp-flake8
```## Usage
```javascript
var gulp = require('gulp');
var gulpFlake8 = require('gulp-flake8');gulp.task('isort', function () {
return gulp.src('**/*')
.pipe(gulpFlake8())
.pipe(gulpFlake8.failOnError());
});
```## License
Gulp Flake8 is Copyright (c) 2016 sophilabs, inc. It is free software, and may be
redistributed under the terms specified in the [license] file.## About
[![sophilabs][sophilabs-image]][sophilabs-url]
Gulp Flake8 is maintained and funded by sophilabs, inc. The names and logos for
sophilabs are trademarks of sophilabs, inc.[license]: /LICENSE
[sophilabs-image]: https://s3.amazonaws.com/sophilabs-assets/logo/logo_300x66.gif
[sophilabs-url]: https://sophilabs.co
[travis-image]: https://img.shields.io/travis/sophilabs/gulp-flake8.svg?style=flat-square
[travis-url]: https://travis-ci.org/sophilabs/gulp-flake8
[npm-image]: https://img.shields.io/npm/v/gulp-flake8.svg?style=flat-square
[npm-url]: https://npmjs.org/packge/gulp-flake8
[downloads-image]: https://img.shields.io/npm/dm/gulp-flake8.svg?style=flat-square
[downloads-url]: https://npmjs.org/package/gulp-flake8
[semi-image]: https://img.shields.io/badge/code%20style-semistandard-brightgreen.svg?style=flat-square
[semi-url]: https://github.com/Flet/semistandard
[coveralls-image]: https://img.shields.io/coveralls/sophilabs/gulp-flake8.svg?style=flat-square
[coveralls-url]: https://coveralls.io/github/sophilabs/gulp-flake8?branch=master
[license-image]: https://img.shields.io/github/license/sophilabs/gulp-flake8.svg?style=flat-square
[license-url]: /LICENSE
[dependencies-image]: https://david-dm.org/sophilabs/gulp-flake8.svg?style=flat-square
[dependencies-url]: https://david-dm.org/sophilabs/gulp-flake8
[dev-dependencies-image]: https://david-dm.org/sophilabs/gulp-flake8/dev-status.svg?style=flat-square
[dev-dependencies-url]: https://david-dm.org/sophilabs/gulp-flake8#info=devDependencies