lang: sort json keys

This is the result of

    find lang -name "*.json" | while read file; do
      echo "Standardizing ${file}"
      t=$(mktemp)
      jq --indent 4 -S "." ${file} > ${t}
      mv ${t} ${file}
    done
This commit is contained in:
Christoph Settgast
2022-01-18 18:36:05 +01:00
committed by Saúl Ibarra Corretgé
parent 2c2b2c0bec
commit 7fe319d965
115 changed files with 10362 additions and 10385 deletions

File diff suppressed because it is too large Load Diff