mfgames-project-setup-flake/src/configs/rustfmt.nix

18 lines
344 B
Nix
Raw Normal View History

2024-01-28 22:18:12 +00:00
inputs @ { pkgs, ... }:
2024-01-28 20:32:33 +00:00
let
data = {
brace_style = "AlwaysNextLine";
indent_style = "Block";
reorder_imports = true;
imports_layout = "HorizontalVertical";
max_width = 80;
group_imports = "StdExternalCrate";
imports_granularity = "Module";
};
in
{
inherit data;
output = "rustfmt.toml";
format = "toml";
}