-
Notifications
You must be signed in to change notification settings - Fork 25
FileTypes
Leonhard edited this page Oct 19, 2020
·
5 revisions
JSON is quite a common file type for configuration/storage files, it is rather fast but fairly hard to read as a human.
YAML is not as fast as JSON but way easier to read, which is why Most Minecraft plugins rely on it as their configuration file (mostly config.yml
).
TOML is a compromise between the readability of Yaml and the performance of JSON, thus being a quite good way to go.
2020-2022 - SimplixSoftworks