dprint 0.34.4

Binary for dprint code formatter—a pluggable and configurable code formatting platform.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
mod config;
mod editor;
mod formatting;
mod general;
mod upgrade;
#[cfg(target_os = "windows")]
mod windows_install;

pub use config::*;
pub use editor::*;
pub use formatting::*;
pub use general::*;
pub use upgrade::*;
#[cfg(target_os = "windows")]
pub use windows_install::*;