You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, it is not possible to specify a list of keys that should be excluded from case conversion.
In my case, this makes it hard to build a config from an Environment and a File, where some identifiers in the file are kebab-case, while other parameters are snake_case.
For example, I want a kebab-case key and a snake_case configuration:
Currently, it is not possible to specify a list of keys that should be excluded from case conversion.
In my case, this makes it hard to build a config from an
Environment
and aFile
, where some identifiers in the file arekebab-case
, while other parameters aresnake_case
.For example, I want a
kebab-case
key and asnake_case
configuration:# Environment configuration FOO__KEBAB_CASE_KEY__SNAKE_CASE_CONFIGURATION=bar
While there is a method convert_case, it is applied to all collected keys. For this example, a possible solution would be something like:
The text was updated successfully, but these errors were encountered: