//! Bash Quality Tools
//!
//! Comprehensive quality tooling for bash scripts including:
//! - Testing: Run inline tests with GIVEN/WHEN/THEN syntax
//! - Scoring: TDG-style quality scoring (A+ to F)
//! - Coverage: Line and function coverage tracking
//! - Formatting: Bash script formatting (NEW in v6.14.0)
//! - Linting: Smart suppression and file type detection (NEW)
//!
//! This module provides the foundation for making bashrs the "cargo for bash".
// Dockerfile scoring uses expect() for internal invariants
// Formatter uses expect() for internal invariants
// Formatter config uses expect() for internal invariants
// Re-export for convenience
pub use Formatter;
pub use FormatterConfig;
pub use ;