In order to simplify deps, this PR makes config file formats pluggable. The extensions supported by default are "json" and "eterm".
The default json decoder is the one from OTP, but if one prefers another (e.g. zj), it's possible to choose that when installing the gmconfig env.
In order to simplify deps, this PR makes config file formats pluggable. The extensions supported by default are "json" and "eterm".
The default json decoder is the one from OTP, but if one prefers another (e.g. `zj`), it's possible to choose that when installing the gmconfig env.
Example of adding a yaml decoder:
```erlang
instrument_gmconfig() ->
gmconfig:set_gmconfig_env(gmconfig_env()).
-spec gmconfig_env() -> gmconfig:gmconfig().
gmconfig_env() ->
#{ ...
, config_formats => add_yamerl() }.
add_yamerl() ->
Default = maps:get(config_formats, gmconfig:default_gmconfig_env()),
case maps:is_key("yaml", Default) of
true ->
Default;
false ->
Default#{"yaml" => fun yamerl_decode/1}
end.
yamerl_decode(Bin) ->
yamerl:decode(Bin, [{str_node_as_binary, true},
{map_node_format, map}]).
```
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
In order to simplify deps, this PR makes config file formats pluggable. The extensions supported by default are "json" and "eterm".
The default json decoder is the one from OTP, but if one prefers another (e.g.
zj), it's possible to choose that when installing the gmconfig env.Example of adding a yaml decoder: