diff --git a/tag_sorter.jq b/tag_sorter.jq new file mode 100644 index 0000000..c4b56b4 --- /dev/null +++ b/tag_sorter.jq @@ -0,0 +1,5 @@ +walk( + if type == "object" and has("tags") then + .tags |= sort_by(.name) +end +) \ No newline at end of file