-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
82 lines (82 loc) · 2.53 KB
/
.pre-commit-config.yaml
File metadata and controls
82 lines (82 loc) · 2.53 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
# disable autofixing PRs, commenting "pre-commit.ci autofix" on a pull request triggers a autofix
ci:
autofix_prs: false
# ignore meeting notes since they are synced as is from HackMD
exclude: |
(?x)^(
meetings/archive
)/
repos:
# generic verification and formatting
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
# standard end of line/end of file cleanup
- id: mixed-line-ending
- id: end-of-file-fixer
- id: trailing-whitespace
# ensure syntaxes are valid
- id: check-toml
- id: check-yaml
# catch git merge/rebase problems
- id: check-merge-conflict
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.28.5
hooks:
- id: check-github-workflows
# validate sub-teams schema
- id: check-jsonschema
files: ^teams/.*\.ya?ml$
args: [--schemafile, teams/teams.schema.json]
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff
args: [--fix]
files: ^scripts/.*\.py$
- id: ruff-format
files: ^scripts/.*\.py$
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.15.0
hooks:
- id: pretty-format-toml
args: [--autofix, --trailing-commas]
- repo: https://github.com/jumanjihouse/pre-commit-hook-yamlfmt
rev: 0.2.3
hooks:
- id: yamlfmt
# ruamel.yaml doesn't line wrap correctly (?) so set width to 1M to avoid issues
args: [--mapping=2, --offset=2, --sequence=4, --width=1000000, --implicit_start]
- repo: https://github.com/python-jsonschema/check-jsonschema
rev: 0.35.0
hooks:
# verify github syntaxes
- id: check-github-workflows
- repo: https://github.com/codespell-project/codespell
# see pyproject.toml
rev: v2.4.1
hooks:
- id: codespell
exclude: ^teams/.*/.*\.ya?ml$
exclude_types:
- csv
args: [--write-changes]
- repo: meta
# see https://pre-commit.com/#meta-hooks
hooks:
- id: check-hooks-apply
- id: check-useless-excludes
- repo: local
hooks:
- id: sort-team-yaml
name: Check ordering in teams/**/*.yml
language: python
entry: python scripts/sort_team_yaml.py
files: ^teams/.*/.*\.ya?ml$
additional_dependencies: [ruamel.yaml, email-validator, pydantic]
- id: git-diff
name: git diff
entry: git diff --exit-code
language: system
pass_filenames: false
always_run: true