mirror of
https://github.com/PyCQA/flake8.git
synced 2026-03-30 10:46:54 +00:00
20 lines
579 B
YAML
20 lines
579 B
YAML
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.3.0
|
|
hooks:
|
|
- id: debug-statements
|
|
exclude: ^tests/fixtures/example-code/invalid-syntax.py$
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
exclude: ^tests/fixtures/diffs/
|
|
- repo: https://github.com/psf/black
|
|
rev: 20.8b1
|
|
hooks:
|
|
- id: black
|
|
args: [--line-length=78]
|
|
files: ^src/
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.720
|
|
hooks:
|
|
- id: mypy
|
|
exclude: ^(docs/|example-plugin/|tests/fixtures)
|