nix-community / nixpkgs-fmt

Nix code formatter for nixpkgs [maintainer=@zimbatm]
https://nix-community.github.io/nixpkgs-fmt/
Apache License 2.0
581 stars 34 forks source link

Wrong indention for attr set as parameter #301

Open Gerschtli opened 1 year ago

Gerschtli commented 1 year ago

This indention does not make any sense to me. All arguments should be indented.

Input

runCommand
  "name"
  { }
  "touch $out"

Output

runCommand
  "name"
{ }
  "touch $out"

Desired output

runCommand
  "name"
  { }
  "touch $out"