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 ban_terms;
5pub mod branch_pattern;
6pub mod branch_protect;
7pub mod commit_msg;
8pub mod common;
9pub mod k8s;
10pub mod lint_js;
11pub mod lint_json_yaml;
12pub mod merge_conflict;
13pub mod package_lock;
14pub mod prepare_commit_msg;
15pub mod prettier;
16pub mod pull_rebase;
17pub mod python_tools;
18pub mod run_tests;
19pub mod rust_tools;
20pub mod usual_name;
21pub mod yamllint;