We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
According to the spec toml is case sensitive. While the go lib currently also matches case insensitive (https://godoc.org/github.com/BurntSushi/toml#hdr-Key_mapping) we should not rely on this.
The text was updated successfully, but these errors were encountered:
What style should we go for?
[logging] [logging.file] Level = "debug"
vs
[Logging] [Logging.File] Level = "debug"
Sorry, something went wrong.
We should go for snake_case, so it's similar to our JSON files.
toml: use snake_case remove unused properties
0f02329
Remove all currently unused configuration options. Change all config options to snake_case. Fixes scionproto#2412
toml: use snake_case remove unused properties (#3684)
5a03123
Remove all currently unused configuration options. Change all config options to snake_case. Fixes #2412
lukedirtwalker
Successfully merging a pull request may close this issue.
According to the spec toml is case sensitive.
While the go lib currently also matches case insensitive (https://godoc.org/github.com/BurntSushi/toml#hdr-Key_mapping) we should not rely on this.
The text was updated successfully, but these errors were encountered: