dprint_core/
lib.rs

1#![allow(clippy::bool_to_int_with_if)]
2#![deny(clippy::print_stderr)]
3#![deny(clippy::print_stdout)]
4#![deny(clippy::unused_async)]
5
6#[cfg(feature = "communication")]
7pub mod communication;
8
9#[cfg(feature = "formatting")]
10pub mod formatting;
11
12pub mod configuration;
13#[cfg(any(feature = "process", feature = "wasm"))]
14pub mod plugins;
15
16#[cfg(feature = "async_runtime")]
17pub mod async_runtime;