foxguard 0.7.1

A security scanner as fast as a linter, written in Rust. 170+ built-in rules across 10 languages.
Documentation
1
2
3
4
5
6
7
8
pub mod parser;
pub mod scanner;

pub use parser::parse_file;
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,
};