by Timothee on 4/26/25, 3:31 PM with 10 comments
by eichin on 4/26/25, 9:23 PM
by mubou on 4/26/25, 4:52 PM
Thank you! Types have no business in a configuration format when the app already has a defined schema. Most formats try to convey all of the information needed to reconstruct an object, but that's totally unnecessary and only serves to complicate the syntax and introduce unnecessary errors/mishandlings.
Are there any other config syntaxes that do this? Besides ad-hoc INI, that is.
by epage on 4/26/25, 10:52 PM
Also, while indentation "works" for Python, the ratio of different levels per line is low while YAML it is high and I'm not a fan. I'd want to see a more complex example to have a real feel for this.
by 3eb7988a1663 on 4/26/25, 8:30 PM
; Quoting is rarely required. Keys and values can contain pretty
; much any character except ; (and = for keys).
spaced out key = value with = signs and "quotes"!
That one makes my spider sense tingle, but it does seem elegant at making it easier to write.by edoceo on 4/26/25, 8:26 PM
by sebazzz on 4/27/25, 11:51 AM