mirror of
https://github.com/nix-community/flakelight.git
synced 2025-02-15 17:09:24 +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";
|
||
|
};
|
||
|
}
|