What is the best file format for configuration file?

Like A Duck@programming.dev to Technology@lemmy.world – 41 points –

cross-posted from: https://programming.dev/post/1743099

.yaml, .toml, etc?

45

You are viewing a single comment

If you want the file to be directly human readable/editable:

  1. TOML
  2. YAML

If you never need to look at it or edit it manually:

  1. JSON

I hate yaml with a passion. for stuff such as ansible it becomes an uneditable mess (one copy and paste away from destroying the whole file)

luckily, yaml is a superset of json, so you could just write json and feed it through a yaml parser and it'll work

2 more...
2 more...