pyodide/.pre-commit-config.yaml

26 lines
672 B
YAML

exclude: '^.*patches|file_packager.*|.*\.cgi$'
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v2.3.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/psf/black
rev: 20.8b1
hooks:
- id: black
- repo: https://gitlab.com/pycqa/flake8
rev: 3.7.8
hooks:
- id: flake8
types: [file, python]
# only check for unused imports, as the rest is done by black
args: [--select=F401]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.782
hooks:
- id: mypy
args:
- --ignore-missing-imports