File size: 426 Bytes
c6e359f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: flake8
- id: trailing-whitespace
- 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] |