-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
56 lines (49 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
47
48
49
50
51
52
53
54
55
56
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
.python-linters: &python-linters
fail_fast: true
pass_filenames: false
language: system
types: [python]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-ast
fail_fast: true
- id: trailing-whitespace
fail_fast: true
- id: check-toml
fail_fast: true
- id: end-of-file-fixer
fail_fast: true
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
fail_fast: true
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.11.0
hooks:
- id: pretty-format-yaml
fail_fast: true
args:
- --autofix
- --preserve-quotes
- --indent=2
- repo: local
hooks:
- <<: *python-linters
id: black
name: Format with Black
entry: black
args: ["."]
- <<: *python-linters
id: ruff
name: Check with ruff
entry: ruff
args: ["check", "--fix", "."]
- <<: *python-linters
id: mypy
name: Validate types with MyPy
entry: mypy