TOML Style Guide#
Tom’s Obvious Minimal Language (TOML) is a configuration file format
that maps to a hash table. It’s similar to Windows .ini files.
Indentation#
TODO
Section Spacing#
Sections within a .toml file must be separated by one blank line.
For example:
1[build-system]
2requires = ["setuptools>=61.0"]
3build-backend = "setuptools.build_meta"
4
5[project]
6name = "updoot-inator"
7#...