pub const TYPOS_TOML: &str = r#"[default]
extend-ignore-re = [
# Technical terms and identifiers
"([A-Z][a-z]*){2,}", # CamelCase
"[a-z]+_[a-z]+", # snake_case variables
]
[default.extend-words]
# Add your project-specific terms here
utoipa = "utoipa"
axum = "axum"
sqlx = "sqlx"
chrono = "chrono"
tokio = "tokio"
rustls = "rustls"
# Technical terms
anonymization = "anonymization"
anonymize = "anonymize"
anonymized = "anonymized"
[files]
extend-exclude = ["target/", "Cargo.lock", "*.log", ".git/"]
"#;