cuemata/treefmt.nix

24 lines
478 B
Nix

# SPDX-FileCopyrightText: 2023 Hoang Nguyen <folliekazetani@protonmail.com>
#
# SPDX-License-Identifier: Apache-2.0
_: {
projectRootFile = "flake.lock";
programs = (builtins.listToAttrs (
builtins.map
(x: {
name = x;
value.enable = true;
})
[
"buildifier"
# "cue" # https://github.com/cue-lang/cue/issues/2523
"gofumpt"
"nixpkgs-fmt"
"statix"
]
)) // {
gofumpt.extra = true;
};
}