clean-dev-dirs 2.8.1

A fast CLI tool for recursively cleaning development build directories (Rust, Node.js, Python, Go, Java/Kotlin, C/C++, Swift, .NET) to reclaim disk space
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Configuration types and options for the application.
//!
//! This module contains all configuration structures used throughout the application,
//! including filtering, scanning, execution options, and persistent file-based configuration.

pub mod execution;
pub mod file;
pub mod filter;
pub mod scan;

pub use execution::ExecutionOptions;
pub use file::FileConfig;
pub use filter::{FilterOptions, ProjectFilter, SortCriteria, SortOptions};
pub use scan::ScanOptions;