mirror of
https://github.com/nix-community/flakelight.git
synced 2025-02-19 19:00:53 +01:00
8 lines
177 B
Nix
8 lines
177 B
Nix
_: {
|
|
devTools = pkgs: with pkgs; [ nixpkgs-fmt nodePackages.prettier ];
|
|
formatters = {
|
|
"*.nix" = "nixpkgs-fmt";
|
|
"*.md | *.json | *.yml" = "prettier --write";
|
|
};
|
|
}
|