sane-fmt 0.18.1

Opinionated code formatter for TypeScript and JavaScript
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod app;
pub mod cfg;
pub mod cli_opt;

/// The main program.
///
/// It initializes `app::App` with default values and runs it.
pub fn main() {
    app::App::default().run()
}