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
|
# run all hooks with:
# pre-commit run --hook-stage manual --all
ci:
skip:
# pre-commit.ci doesn't have Rust installed
- cargo-fmt
- cargo-deny
repos:
- repo: local
hooks:
- id: cargo-fmt # rustup component add rustfmt
name: cargo fmt
entry: cargo fmt --all --
language: system
types: [rust]
pass_filenames: false
- id: cargo-deny # cargo install --locked cargo-deny
name: cargo deny
entry: cargo deny --all-features check --
language: system
pass_filenames: false
- id: cargo-check
name: cargo check
entry: cargo check --all-features --all-targets --
language: system
pass_filenames: false
types: [rust]
stages: [manual] # because it's slow
- id: cargo-clippy # rustup component add clippy
name: cargo clippy
entry: cargo clippy --tests --all-features -- -D warnings
language: system
pass_filenames: false
types: [rust]
stages: [manual] # because it's slow
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: check-yaml
- id: check-toml
- id: end-of-file-fixer
exclude: |
(?x)(
(^sysconfig/)|
(.*\.stdout)
)
- id: trailing-whitespace
exclude: |
(?x)(
(^sysconfig/)|
(.*\.stdout)
)
- id: mixed-line-ending
- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.12.10
hooks:
- id: ruff-format
- id: ruff
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.17.1
hooks:
- id: mypy
entry: mypy maturin/
pass_filenames: false
- repo: https://github.com/codespell-project/codespell
rev: v2.4.1
hooks:
- id: codespell
|