23 lines
518 B
YAML
23 lines
518 B
YAML
# Note: don't use this config for your own repositories. Instead, see
|
|
# "Version control integration" in README.md.
|
|
exclude: ^(blib2to3/|profiling/|tests/data/)
|
|
repos:
|
|
- repo: local
|
|
hooks:
|
|
- id: black
|
|
name: black
|
|
language: system
|
|
entry: black
|
|
types: [python]
|
|
- id: flake8
|
|
name: flake8
|
|
language: system
|
|
entry: flake8
|
|
types: [python]
|
|
- id: mypy
|
|
name: mypy
|
|
language: system
|
|
entry: mypy
|
|
types: [python]
|
|
exclude: ^docs/conf.py
|