-
Notifications
You must be signed in to change notification settings - Fork 54
/
.pre-commit-config.yaml
50 lines (44 loc) · 1.02 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
.python-linters: &python-linters
pass_filenames: false
fail_fast: true
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
- 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.14.0
hooks:
- id: pretty-format-yaml
fail_fast: true
args:
- --autofix
- --preserve-quotes
- --indent=2
- repo: local
hooks:
- <<: *python-linters
id: ruff format
name: Format with ruff
entry: ruff
args: ["format", "."]
- <<: *python-linters
id: ruff
name: Check with ruff
entry: ruff
args: ["check", "--fix", "."]