cuemata/treefmt.nix
Hoang Nguyen 0041771955
Initial commit
There is nothing here yet, just boilerplate code -_-
2023-12-10 00:00:00 +07:00

22 lines
441 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"
]
);
}