1 2 3 4 5 6 7 8 9 10 11 12
pub mod parser; pub mod rules; #[cfg(not(target_arch = "wasm32"))] pub mod config; #[cfg(not(target_arch = "wasm32"))] pub mod linter; #[cfg(not(target_arch = "wasm32"))] pub mod output; #[cfg(target_arch = "wasm32")] pub mod wasm;