#![warn(clippy::pedantic)]
#![cfg_attr(
not(test),
deny(
clippy::unwrap_used,
clippy::expect_used,
clippy::todo,
clippy::unimplemented,
clippy::panic
)
)]
#![allow(
clippy::module_name_repetitions,
clippy::must_use_candidate,
clippy::missing_errors_doc
)]
#![warn(missing_docs)]
#![forbid(unsafe_code)]
pub use walkkit::{
CodeWalker, FileContent, FileContentChunks, FileEntry, WalkConfig, detect, error, probe,
sandbox,
};