Rustfmt

rustfmt 是 Rust 代码风格的工具。

本地运行

可以通过 mach 运行 rustfmt 的 mozlint 集成。

$ mach lint --linter rustfmt <file paths>

配置

要在新的目录中启用 rustfmt,请将路径添加到 rustfmt.yml 文件的 include 部分。

自动修复

Rustfmt 默认情况下会重新格式化代码。为了突出显示结果,我们使用了 --check 选项。

来源