@cryptotaxi247 / infra / commits / 9443237c

formatter: ignore dnscontrol formatting

The deno formatting is not helpful for what is a sorted and commented data structure as opposed to actual javascript code.

Martin Weinelt committed Mar 29, 2025 at 04:09 UTC 9443237c96bc3ca290989bd1c9f3c8e869f156ad
1 file changed +7 -1
formatter/flake-module.nix
+7 -1
@@ -16,7 +16,13 @@
16
17 # older actionlint version don't recognize aarch64 builder
18 programs.actionlint.enable = lib.versionAtLeast pkgs.actionlint.version "1.7.7";
19 - programs.deno.enable = true;
19 + programs.deno = {
20 + enable = true;
21 + excludes = [
22 + # makes these files *less* readable
23 + "dns/*.js"
24 + ];
25 + };
26 programs.terraform.enable = true;
27 programs.deadnix.enable = true;
28 programs.nixfmt.enable = true;