rumdl 0.1.51

A fast Markdown linter written in Rust (Ru(st) MarkDown Linter)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Type-safe configuration types for rumdl.
//!
//! This module contains newtype wrappers and validation types that enforce
//! constraints on configuration values at both compile time and runtime.

mod br_spaces;
mod heading_level;
mod indent_size;
mod line_length;
mod non_negative_usize;
mod positive_usize;

pub use br_spaces::{BrSpaces, BrSpacesError};
pub use heading_level::{HeadingLevel, HeadingLevelError};
pub use indent_size::{IndentSize, IndentSizeError};
pub use line_length::LineLength;
pub use non_negative_usize::{NonNegativeUsize, NonNegativeUsizeError};
pub use positive_usize::{PositiveUsize, PositiveUsizeError};