foxguard 0.12.0

A security scanner as fast as a linter, written in Rust. 200+ built-in rules across 12 source languages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod coccinelle;
pub mod codeql;
pub mod parser;
pub mod process;
pub mod scanner;

pub use parser::{parse_file, parse_path};
pub use scanner::{
    detect_language, scan_directory, scan_directory_with_notices, scan_paths, scan_paths_with_root,
    scan_paths_with_root_with_notices, PathExcludeMatcher, ScanResult, ScanStats,
};