debian-mirror-gitlab/scripts/lint-json.sh
2022-11-25 23:54:43 +05:30

9 lines
142 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
for file in "$@"
do
yarn run -s jsonlint -p "$file" | perl -pe 'chomp if eof' | diff "$file" -
done