File size: 432 Bytes
e3ff9dd 1e4b31b e3ff9dd 1e4b31b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: flake8
args: [--max-line-length=88]
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: check-added-large-files
- id: check-json
- id: pretty-format-json
args: [--autofix]
- repo: https://github.com/psf/black
rev: 19.3b0
hooks:
- id: black
args: [--config=black.toml]
|