forked from binius-zk/binius64
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
27 lines (27 loc) · 843 Bytes
/
.pre-commit-config.yaml
File metadata and controls
27 lines (27 loc) · 843 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
repos:
- repo: local
hooks:
- id: copyright
name: Check copyright notices
language: system
entry: python3 tools/check_copyright_notice.py
pass_filenames: false
stages: [pre-commit]
- id: rustfmt
name: Run `rustfmt`
language: rust
types: [rust]
entry: cargo +nightly-2025-08-11 fmt --check
pass_filenames: false
stages: [pre-commit]
- id: clippy
name: Run cargo clippy
types: [rust]
language: rust
entry: cargo clippy --workspace --all-targets -- -D warnings
pass_filenames: false
stages: [pre-push]
- repo: https://github.com/crate-ci/typos
rev: v1.32.0
hooks:
- id: typos