I\'m trying in Scala to get a list from a config file like something.conf with TypeSafe.
something.conf
TypeSafe
In something.conf I set the parameter
You can try my scala wrapper https://github.com/andr83/scalaconfig - it supports reading native scala types directly from config object. In your case it will look:
val myList = modifyConfig.as[List[String]]("mylist")