dprint_plugin_jsonc/
lib.rs

1pub mod configuration;
2mod format_text;
3mod parser;
4
5pub use format_text::format_text;
6
7#[cfg(feature = "wasm")]
8#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
9mod wasm_plugin;
10
11#[cfg(feature = "wasm")]
12#[cfg(all(target_arch = "wasm32", target_os = "unknown"))]
13pub use wasm_plugin::*;