forked from pyodide/pyodide
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
38 lines (37 loc) · 1004 Bytes
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
exclude: '^.*patches|.*\.cgi$'
default_language_version:
python: "3.9"
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.812
hooks:
- id: mypy
args:
- --ignore-missing-imports
- repo: local
hooks:
- id: clang-format
name: clang-format-6.0
language: system
entry: ./tools/clang-format-precommit.sh
- repo: https://github.com/pre-commit/mirrors-prettier
rev: "v2.3.2" # Use the sha / tag you want to point at
hooks:
- id: prettier