I think yaml’s need for indentation alone makes it chaotic evil. I’ve seen so many people struggle with the indentation than they really need to it’s not fun. Especially problematic with large configuration files.
JSON is easy to unpack with tools like jq or whatever.
Socsa@sh.itjust.works 1 year ago
Also JSON has no comments. Which is great for me because I hate documenting my work, but it’s still annoying.
EmergMemeHologram@startrek.website 1 year ago
Just create an attribute for your comments!
sloppy_diffuser@sh.itjust.works 1 year ago
I just learned yesterday you can do this, lol. You can use “//”: ‘’ once at the root level of a package.json file.
Had to put an override to block a dependency of a dependency from installing (@types/* stubs when the package now has native type defs that conflicted with the no longer maintained stubs).
I put in a comment as to why its there.