TOOLS: bin/generate-all.sh should skip .vscode

This commit is contained in:
Thomas Limoncelli 2025-12-08 10:07:15 -05:00
parent db27a1e557
commit 38870fd6c0
No known key found for this signature in database

View file

@ -7,7 +7,7 @@ if [[ -x node_modules/.bin/prettier ]]; then
fi fi
# JSON # 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: # dnsconfig.js-compatible files:
for i in pkg/js/parse_tests/*.js ; do dnscontrol fmt -i $i -o $i ; done for i in pkg/js/parse_tests/*.js ; do dnscontrol fmt -i $i -o $i ; done