chia-blockchain/.pre-commit-config.yaml
dustinface 85e176fe31
pre-commit: Update some hooks (#8309)
* pre-commit: Update `flake8` to 3.9.2

* pre-commit: Update `pre-commit-hooks` to 4.0.1

* pre-commit: Update `black` to 21.8b0
2021-09-07 18:18:43 -07:00

25 lines
629 B
YAML

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.0.1
hooks:
- id: check-yaml
- id: end-of-file-fixer
exclude: ".*?(.hex|.clvm|.clib)"
- id: trailing-whitespace
- id: check-merge-conflict
- id: check-ast
- id: debug-statements
- repo: https://github.com/psf/black
rev: 21.8b0
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.9.2
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
hooks:
- id: mypy
additional_dependencies: [types-setuptools, types-PyYAML]