An open API service indexing awesome lists of open source software.

https://github.com/gvanderest/pylama-pre-commit

Hooks file for `pre-commit` integration.
https://github.com/gvanderest/pylama-pre-commit

hooks lint pre-commit pylama python

Last synced: about 1 year ago
JSON representation

Hooks file for `pre-commit` integration.

Awesome Lists containing this project

README

          

# Pylama pre-commit hooks

Want to use [pylama](https://github.com/klen/pylama) with [pre-commit](https://pre-commit.com/)?

So did I, but I wasn't able to find any hooks created to allow for it. Now this one does.. and it's worked for the small surface area I've tested so far.

## Installation

Once you've installed `pre-commit`:

```shell
pip install pre-commit
```

You should be able to edit your `.pre-commit-config.yaml` file to include the configuration from this repository:

```yaml
- repo: https://github.com/gvanderest/pylama-pre-commit
rev: 0.1.2
hooks:
- id: pylama
```