#indentation #indent #cli #formatting

app deindentor

一个反转文件缩进的工具

5 个稳定版本

1.1.1 2022年5月19日
1.1.0 2022年2月22日
1.0.2 2022年2月21日

#10 in #indent

每月 41 次下载

MIT/Apache

5KB
80 代码行

Crates.io Crates.io Rust

反转您的文件缩进

用法

  1. 使用 cargo 安装。
cargo install deindentor
  1. 使用它。
deindentor <INPUT-FILE> <OUTPUT-FILE>

示例

之前

fn foo(){
    if true {
        println!("true");
    } else {
        println!("false");
    }
}

之后

        fn foo(){
    if true {
println!("true");
    } else {
println!("false");
    }
        }

依赖

~3MB
~61K SLoC