Socket
Socket
Sign inDemoInstall

gulp-pylint

Package Overview
Dependencies
38
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    gulp-pylint

Run Pylint in Gulp


Version published
Maintainers
1
Created

Readme

Source

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

Keywords

FAQs

Last updated on 19 May 2018

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc