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