From 38870fd6c0f6ba9aa3df197d01bc912b2bafe5a4 Mon Sep 17 00:00:00 2001 From: Thomas Limoncelli Date: Mon, 8 Dec 2025 10:07:15 -0500 Subject: [PATCH] TOOLS: bin/generate-all.sh should skip .vscode --- bin/generate-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/generate-all.sh b/bin/generate-all.sh index 03973129b..79fc0bdfa 100755 --- a/bin/generate-all.sh +++ b/bin/generate-all.sh @@ -7,7 +7,7 @@ if [[ -x node_modules/.bin/prettier ]]; then fi # JSON -bin/fmtjson $(find . -type f -name "*.json" ! -name "package-lock.json" -print) +bin/fmtjson $(find . -path ./.vscode -prune -o -type f -name "*.json" ! -name "package-lock.json" -print) # dnsconfig.js-compatible files: for i in pkg/js/parse_tests/*.js ; do dnscontrol fmt -i $i -o $i ; done