checkalot 0.1.7

Run a series of check commands on a repository (e.g. fmt/clippy/machete/deny)
Documentation
1
2
3
4
5
6
7
8
use clap::Parser;

use checkalot::mains::{main as main_impl, Flags};

fn main() -> anyhow::Result<()> {
    let args = Flags::parse();
    main_impl(args)
}