Hacker News new | past | comments | ask | show | jobs | submit login

Them why not json?



* JSON doesn't have comments. I could stop right there because that's a total deal-breaker for me for anything that's supposed to be read or written by humans.

* JSON doesn't handle multiline strings.

* JSON is not especially readable (no structure enforced, braces and double quote mandatory).

* JSON can't load YAML but YAML can load JSON.

(lots more)


No trailing commas makes editing JSON a pain


The lack of trailing commas isn't the problem. The problem is the intermediary commas.

Those are used in JavaScript to give you the option to provide an expression in place of a single term. But that's not even allowed in JSON, so the commas aren't serving any purpose at all.


Given this, I'd much rather XML any day. You can comment using <!-- Comment --> blocks.


I have zero problems with XML. Hard sell though.

It's annoying though because it's so mature compared to everything similar (even YAML, which I obviously quite like); like if you make an XSD for your config files everyone gets free editing features (not just validation, completion as well, even completion of attributes)


If you want something editable by hand, yaml is much nicer than Json because you get comments and you don't need to worry about missing a bracket.


I have no big love for json or yaml, but i'd gladly take worrying about missing brackets over worrying about the handful of whitespace-related gotchas in yaml.


YAML gets cleaner diffs when you edit it.


That's more of a problem with diff tools, though, which like almost all tooling and even programming languages, make the mistake of treating code as plain text.


OK, well, if you want to invent a new VC tool that can parse arbitrary languages into a syntax tree and make a useful diff and then convince everyone to use it instead of git then maybe I’ll stop using YAML.


Semantic Diff tools already exist. Haven't looked at ones that specifically support YAML, but e.g., graphtage claims to do so.


YAML is way less verbose than JSON. Something as simple as multiline script is terribly suited for JSON.


The problem is when you want to put a script into yaml you should stop and think what it is you’re actually doing.


JSON doesn't support comments.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: