There are a number of JSON variants that accept comments (JSON with comments, JSON 5, etc.). There are plenty of tools available that convert JSON to YAML and vice versa. Does there exist such a converter from JSON to YAML that (1) accepts JSON comments and (2) converts these comments to YAML comments?
Is there a JSON with comments to YAML converter?
300 Views Asked by Scott Deerwester At
2
There are 2 best solutions below
2

I use an app called DevToys (https://devtoys.app/), which has this functionality - as well as many other very useful other tools. Very highly recommended!
This is a screenshot from their site with what you need: https://devtoys.app/img/screenshots/json_yaml.png
As of YAML 1.2.0 (Jul 21, 2009), YAML is a superset of JSON. Thus, technically, as long as the commenting style is YAML-compliant (using
#
not//
etc.), all "JSON variants that accept comments" by themselves are already valid YAML documents.To alter the styling of some YAML (including JSON) content, you only need to find an appropriate (general) YAML(-only) processor that preserves (all) comments.
Here's one example using mikefarah/yq v4.35.1 (not to be confused with kislyuk/yq of the same name which does not preserve comments). With a sample
input.json
containingyou can remove the JSON-styling on all levels using the filter
... style = ""
:As you can see, four comments get lost: the ones before a first key or item, the one after the last object item, and the one inline with the last closing brace. Examine your use-case, and/or consider extending the filter with some comment operators offered by yq. For example, you could add the last one missing by combining the
line_comment
with thefoot_comment
for the document-level only:Regarding mikefarah/yq specifically, note that the current version (v4.35.1) cannot read a JSON input where an object field's key and the subsequent colon are on separate lines (so you'd also expect comments to live in between):
Also see https://yaml.org/ which has a long list of YAML processors and language frameworks. Some of them also handle comments, so try them out as one of them may just exactly fit your commenting scenario.