amnaredo / test

0 stars 0 forks source link

support hocon syntax #219

Open amnaredo opened 3 years ago

amnaredo commented 3 years ago

motivation:

please add support for hocon syntax flavor, https://github.com/lightbend/config/blob/master/HOCON.md

specifically, both upickle reader and writer should support unquoted names and equals:

{ a : 1 }
{ a = 1 }
{ "a" = 1 }
{ "a" : 1 }

ID: 217 Original Author: Andrei-Pozolotin

amnaredo commented 3 years ago

I'm not going to do this, but in 0.6.0 you can probably do this yourself since uPickle can support other AST formats Original Author: lihaoyi