123456789101112131415161718192021222324 |
- repos:
- - repo: https://github.com/pre-commit/pre-commit-hooks
- rev: v3.4.0
- hooks:
- - id: check-yaml
- - id: check-added-large-files
- args: [--maxkb=20480]
- - id: check-ast
- - id: check-case-conflict
- - id: debug-statements
- - id: detect-private-key
- - id: end-of-file-fixer
- - id: mixed-line-ending
- - id: trailing-whitespace
- - repo: https://github.com/psf/black
- rev: 20.8b1
- hooks:
- - id: black
- additional_dependencies: ['click==8.0.4']
- - repo: https://github.com/kynan/nbstripout
- rev: 0.3.9
- hooks:
- # strip output from Jupyter and IPython notebooks
- - id: nbstripout
|