forked from mistralai/mistral-vibe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
35 lines (31 loc) · 814 Bytes
/
Copy path.pre-commit-config.yaml
File metadata and controls
35 lines (31 loc) · 814 Bytes
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
---
repos:
- repo: https://github.com/mpalmer/action-validator
rev: v0.7.0
hooks:
- id: action-validator
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
hooks:
- id: check-toml
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: tests/snapshots/.*\.svg$
- repo: https://github.com/fsouza/mirrors-pyright
rev: v1.1.407
hooks:
- id: pyright
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.14.5
hooks:
- id: ruff-check
args: [--fix, --unsafe-fixes]
- id: ruff-format
args: [--check]
- repo: https://github.com/crate-ci/typos
rev: v1.34.0
hooks:
- id: typos
args: [--write-changes]
exclude: __snapshots__/.*\.svg$