cpp-linter 2.0.0-rc.17

Run clang-format and clang-tidy on a batch of files.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/cpp-linter/cpp-linter-rs/main/docs/docs/images/logo.png"
)]
#![doc(
    html_favicon_url = "https://github.com/cpp-linter/cpp-linter-rs/raw/main/docs/docs/images/favicon.ico"
)]
#![doc = include_str!("../README.md")]

// project specific modules/crates
pub mod clang_tools;
pub mod cli;
pub mod common_fs;
pub mod error;
pub mod git;
pub mod logger;
pub mod rest_client;
pub mod run;