This. I've worked with a number of systems that "use json as the configuration language"; and in every case it's led to issues.
Given a choice it's better to have a .ini style format like the one that pythons ConfigParser will digest.
That way you can have sections, comments and you won't be tempted to have the application write things into the configuration on it's own...
Given a choice it's better to have a .ini style format like the one that pythons ConfigParser will digest. That way you can have sections, comments and you won't be tempted to have the application write things into the configuration on it's own...