https://github.com/supersolik/pre-commit-pycodestyle-hook
Mirror of the pycodestyle (former pep8) package for pre-commit
https://github.com/supersolik/pre-commit-pycodestyle-hook
Last synced: 11 months ago
JSON representation
Mirror of the pycodestyle (former pep8) package for pre-commit
- Host: GitHub
- URL: https://github.com/supersolik/pre-commit-pycodestyle-hook
- Owner: SuperSolik
- License: mit
- Created: 2022-02-21T12:44:14.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-02-21T13:07:14.000Z (over 4 years ago)
- Last Synced: 2025-06-20T17:06:06.278Z (12 months ago)
- Language: Python
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# pre-commit-pycodestyle-hook
Mirror of the pycodestyle (former pep8) package for pre-commit
For pre-commit: see https://github.com/pre-commit/pre-commit
For pycodestyle: see https://github.com/PyCQA/pycodestyle
### Using pycodestyle with pre-commit
Add this to your `.pre-commit-config.yaml`:
```yaml
- repo: https://github.com/SuperSolik/pre-commit-pycodestyle-hook
rev: '' # Use the sha / tag you want to point at
hooks:
- id: pep8
```
### Included `args`
Note that [this repository] sets `args: ["--show-pep8", "--statistics"]` flags.