From cf8b748c0b4510b90999d5322aa4576d53d96218 Mon Sep 17 00:00:00 2001 From: jopejoe1 Date: Fri, 28 Mar 2025 12:05:18 +0100 Subject: [PATCH] configure nix fmt to use prettier --- flake.nix | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/flake.nix b/flake.nix index fb7757c..2addf20 100644 --- a/flake.nix +++ b/flake.nix @@ -28,5 +28,42 @@ }; } ); + formatter = forSystems ( + system: + let + pkgs = pkgs' system; + in + pkgs.treefmt.withConfig { + runtimeInputs = with pkgs; [ + nixfmt-rfc-style + nodePackages.prettier + ]; + settings = { + tree-root-file = ".git/index"; + formatter = { + nixfmt = { + command = "nixfmt"; + includes = [ "*.nix" ]; + }; + prettier = { + command = "prettier"; + options = [ "--write" ]; + includes = [ + "*.css" + "*.html" + "*.js" + "*.json" + "*.jsx" + "*.md" + "*.mdx" + "*.scss" + "*.ts" + "*.yaml" + ]; + }; + }; + }; + } + ); }; }