mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
c4766d7b8b
When `nix fmt` is called without an argument, Nix appends the "." argument before calling the formatter. The comment in the code is: > Format the current flake out of the box This also happens when formatting sub-folders. This means that the formatter is now unable to distinguish, as an interface, whether the "." argument is coming from the flake or the user's intent to format the current folder. This decision should be up to the formatter. Treefmt, for example, will automatically look up the project's root and format all the files. This is the desired behaviour. But because the "." argument is passed, it cannot function as expected.
620 B
620 B
synopsis | issues | prs | |
---|---|---|---|
Removing the default argument passed to the `nix fmt` formatter |
|
The underlying formatter no longer receives the ". " default argument when nix fmt
is called with no arguments.
This change was necessary as the formatter wasn't able to distinguish between
a user wanting to format the current folder with nix fmt .
or the generic
nix fmt
.
The default behaviour is now the responsibility of the formatter itself, and allows tools such as treefmt to format the whole tree instead of only the current directory and below.
Author: @zimbatm