Sort json objects by _name_ field

This commit is contained in:
Javier Quinones
2026-08-17 10:47:33 -05:00
parent 7ae5096685
commit 2cb5a4e505

5
tag_sorter.jq Normal file
View File

@@ -0,0 +1,5 @@
walk(
if type == "object" and has("tags") then
.tags |= sort_by(.name)
end
)