continuwuity/.pre-commit-config.yaml
Renovate Bot fa73893179
All checks were successful
Documentation / Build and Deploy Documentation (pull_request) Successful in 1m12s
Checks / Prek / Pre-commit & Formatting (pull_request) Successful in 2m1s
Checks / Prek / Clippy and Cargo Tests (pull_request) Successful in 10m28s
Documentation / Build and Deploy Documentation (push) Successful in 57s
Checks / Prek / Pre-commit & Formatting (push) Successful in 1m41s
Release Docker Image / Build linux-amd64 (release) (push) Successful in 5m16s
Release Docker Image / Build linux-arm64 (release) (push) Successful in 5m33s
Checks / Prek / Clippy and Cargo Tests (push) Successful in 9m46s
Release Docker Image / Create Multi-arch Release Manifest (push) Successful in 27s
Release Docker Image / Build linux-amd64 (max-perf) (push) Successful in 13m19s
Release Docker Image / Build linux-arm64 (max-perf) (push) Successful in 12m7s
Release Docker Image / Create Max-Perf Manifest (push) Successful in 15s
chore(deps): update pre-commit hook crate-ci/committed to v1.1.8
2025-11-25 17:16:13 +00:00

47 lines
1 KiB
YAML

default_install_hook_types:
- pre-commit
- commit-msg
default_stages:
- pre-commit
- manual
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v6.0.0
hooks:
- id: fix-byte-order-marker
- id: check-case-conflict
- id: check-symlinks
- id: destroyed-symlinks
- id: check-yaml
- id: check-json
- id: check-toml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: mixed-line-ending
- id: check-merge-conflict
- id: check-added-large-files
- repo: https://github.com/crate-ci/typos
rev: v1.39.2
hooks:
- id: typos
- id: typos
name: commit-msg-typos
stages: [commit-msg]
- repo: https://github.com/crate-ci/committed
rev: v1.1.8
hooks:
- id: committed
- repo: local
hooks:
- id: cargo-fmt
name: cargo fmt
entry: cargo +nightly fmt --
language: system
types: [rust]
pass_filenames: false
stages:
- pre-commit