forked from vzhd1701/gridplayer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
46 lines (42 loc) · 1.12 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
# See https://pre-commit.com/ for usage and config
# pre-commit install
# need commit-msg hook for commitzen
# pre-commit install --hook-type commit-msg
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.4.0
hooks:
- id: check-vcs-permalinks
- id: end-of-file-fixer
exclude_types: [svg]
- id: trailing-whitespace
exclude: \.(patch)$
args: [--markdown-linebreak-ext=md]
- id: mixed-line-ending
exclude_types: [svg]
args: ['--fix=lf']
- id: check-toml
- id: check-yaml
- id: no-commit-to-branch
- repo: local
hooks:
- id: isort
name: isort
stages: [commit]
language: system
entry: poetry run isort
types: [python]
- id: black
name: black
stages: [commit]
language: system
entry: poetry run black
types: [python]
exclude: resources_bin.py
- id: mdformat
name: mdformat
stages: [commit]
language: system
entry: poetry run mdformat
types: [markdown]
exclude: CHANGELOG.md