cpp_linter/
lib.rs

1#![doc(
2    html_logo_url = "https://github.com/cpp-linter/cpp-linter-rs/raw/main/docs/theme/favicon.png"
3)]
4#![doc(
5    html_favicon_url = "https://github.com/cpp-linter/cpp-linter-rs/raw/main/docs/theme/favicon.png"
6)]
7#![doc = include_str!("../README.md")]
8
9// project specific modules/crates
10pub mod clang_tools;
11pub mod cli;
12pub mod common_fs;
13pub mod git;
14pub mod logger;
15pub mod rest_api;
16pub mod run;