-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
59 lines (56 loc) · 1.21 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
54
55
56
57
58
59
repos:
- repo: local
hooks:
- id: pyupgrade
name: pyupgrade
language: node
types:
- "python"
entry: poetry run pyupgrade
args: ["--py37-plus"]
- repo: local
hooks:
- id: isort
name: Reorder Python imports (src, tests)
language: node
types:
- "python"
entry: poetry run isort
- repo: local
hooks:
- id: black
name: black
language: node
types:
- "python"
entry: poetry run black
- repo: local
hooks:
- id: flake8
name: flake8
language: node
types:
- "python"
entry: poetry run flake8
- repo: local
hooks:
- id: pyright
name: pyright
language: node
types:
- "python"
entry: poetry run pyright
- repo: local
hooks:
- id: eslint
name: eslint
language: node
files: '.jsx?$'
exclude: .eslintrc.js|vite.config.js
entry: yarn run eslint
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: fix-byte-order-marker
- id: trailing-whitespace
- id: end-of-file-fixer