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

Comments indented wrong in if statements #324

Open ursi opened 7 months ago

ursi commented 7 months ago

Input

if predicate then
  # green
  something
else
  something-eslse

Output

if predicate then
# green
  something
else
  something-eslse

Desired output

if predicate then
  # green
  something
else
  something-eslse