Skip to main content

amont_runtime/hooks/
mod.rs

1//! One module per ported hook. Phase 1 of docs/rust-migration.md moves them
2//! across one at a time; each keeps a shim at its original path so the existing
3//! .zsh suite exercises the Rust implementation unchanged.
4pub mod audit;
5pub mod ban_terms;
6pub mod branch_pattern;
7pub mod branch_protect;
8pub mod commit_msg;
9pub mod common;
10pub mod go_tools;
11pub mod k8s;
12pub mod large_files;
13pub mod lint_js;
14pub mod lint_json_yaml;
15pub mod merge_conflict;
16pub mod package_lock;
17pub mod post_commit;
18pub mod prepare_commit_msg;
19pub mod prettier;
20pub mod pull_rebase;
21pub mod python_tools;
22pub mod run_tests;
23pub mod rust_tools;
24pub mod secrets;
25pub mod usual_name;
26pub mod yamllint;