cpp-linter 2.0.0-rc9

Run clang-format and clang-tidy on a batch of files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![cfg(not(test))]
/// This crate is the binary executable's entrypoint.
use std::env;

use ::cpp_linter::run::run_main;
use anyhow::Result;

/// This function simply forwards CLI args to [`run_main()`].
#[tokio::main]
pub async fn main() -> Result<()> {
    run_main(env::args().collect::<Vec<String>>()).await
}