-
Notifications
You must be signed in to change notification settings - Fork 90
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
90 lines (83 loc) · 1.96 KB
/
.pre-commit-config.yaml
File metadata and controls
90 lines (83 loc) · 1.96 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
ci:
autofix_prs: true
autofix_commit_msg: "style: pre-commit fixes"
autoupdate_schedule: monthly
autoupdate_commit_msg: 'chore: pre-commit autoupdate'
default_language_version:
python: python3.14
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-json
exclude: |
(?x)^(
.*/launch.json
)$
- id: check-toml
exclude: |
(?x)^(
cookiecutter/.*/pyproject.toml
)$
- id: check-yaml
exclude: |
(?x)^(
cookiecutter/.*/meltano.yml|
cookiecutter/.*/.pre-commit-config.yaml|
cookiecutter/.*/dependabot.yml|
cookiecutter/.*/build.yml|
cookiecutter/.*/test.yml
)$
- id: end-of-file-fixer
exclude: |
(?x)^(
cookiecutter/.*|
docs/.*|
tests/.*snapshots/.*
)$
- id: trailing-whitespace
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.37.0
hooks:
- id: check-codecov
- id: check-dependabot
- id: check-github-issue-config
- id: check-github-issue-forms
- id: check-github-workflows
- id: check-readthedocs
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.15.6
hooks:
- id: ruff-check
args: [--fix, --exit-non-zero-on-fix, --show-fixes]
exclude: |
(?x)^(
cookiecutter/.*
)$
- id: ruff-format
exclude: |
(?x)^(
cookiecutter/.*
)$
types_or: [python, markdown]
- repo: https://github.com/astral-sh/uv-pre-commit
rev: 0.10.9
hooks:
- id: uv-lock
- id: uv-sync
- repo: https://github.com/codespell-project/codespell
rev: v2.4.2
hooks:
- id: codespell
exclude: |
(?x)^(
packages/.*\.json|
)$
- repo: https://github.com/hukkin/mdformat
rev: 1.0.0
hooks:
- id: mdformat
exclude: tests/snapshots/about_format/markdown\.snap\.md
args: [--strict-front-matter]
additional_dependencies:
- mdformat-front-matters