Skip to main content

batuta/comply/rules/
mod.rs

1//! Stack Compliance Rules
2//!
3//! Individual rule implementations for checking cross-project consistency.
4
5mod cargo_toml;
6mod ci_workflow;
7mod duplication;
8mod makefile;
9
10pub use cargo_toml::CargoTomlRule;
11pub use ci_workflow::CiWorkflowRule;
12pub use duplication::DuplicationRule;
13pub use makefile::MakefileRule;