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 k8s;
11pub mod lint_js;
12pub mod lint_json_yaml;
13pub mod merge_conflict;
14pub mod package_lock;
15pub mod post_commit;
16pub mod prepare_commit_msg;
17pub mod prettier;
18pub mod pull_rebase;
19pub mod python_tools;
20pub mod run_tests;
21pub mod rust_tools;
22pub mod secrets;
23pub mod usual_name;
24pub mod yamllint;