-
Notifications
You must be signed in to change notification settings - Fork 4
/
.pre-commit-config.yaml
53 lines (53 loc) · 1.3 KB
/
.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
repos:
- repo: local
hooks:
- id: eslint
name: eslint
entry: npm --prefix frontend run lint
language: system
pass_filenames: false
- repo: local
hooks:
- id: dprint
name: dprint
entry: bash -c 'cd frontend && npx dprint fmt'
language: system
pass_filenames: false
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: ["--settings", "backend/setup.cfg"]
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
language_version: python3
- repo: https://github.com/pycqa/flake8
rev: 4.0.1
hooks:
- id: flake8
args: ["--config", "backend/setup.cfg"]
- repo: local
hooks:
- id: mypy
name: mypy
entry: backend/run_mypy.sh
language: system
types: [python]
files: ^backend/
require_serial: true # run once for all files
- repo: local
hooks:
- id: generate-fetchers
name: generate-fetchers
entry: hooks/hook_generate-fetchers.sh
language: script
pass_filenames: false
- repo: https://github.com/cdce8p/python-typing-update
rev: v0.4.2
hooks:
- id: python-typing-update
stages: [manual]
args: ["--py310-plus"]