From ef3dca70a6da8be42331291039043b5c84d3e438 Mon Sep 17 00:00:00 2001 From: Matt Sturgeon Date: Wed, 5 Nov 2025 15:28:57 +0000 Subject: [PATCH] ci/treefmt: disable biome settings validation The treefmt-nix `biome.settings` validation uses inputs that are liable to hash mismatch. See https://github.com/numtide/treefmt-nix/pull/430 --- ci/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/default.nix b/ci/default.nix index 972c679a1492..5f22dc47ed60 100644 --- a/ci/default.nix +++ b/ci/default.nix @@ -49,6 +49,8 @@ let programs.biome = { enable = true; + # Disable settings validation because its inputs are liable to hash mismatch + validate.enable = false; settings.formatter = { useEditorconfig = true; };