configifier
configifier copied to clipboard
parser for config files, shell variables, command line args.
as @np has just noted while working on liqd/thentos, configifier does not offer a good way to write class instances for config types. turning on `-XTypeSynonymInstances` is a good solution,...
hi, this looks really interesting and good, but the warning to not use it is pretty daunting. Is this package meant to receive some love in the future, or has...
feature request by @jkarni: > Any easy way to modify a particular aspect of a configifier config (like `>>.` gets one)? not sure about whether i want that and what...
use string handling functions or attoparsec instead. libpcre has known bugs.
I've added a test case illustrating the fact that `FilePath` cannot easily be used in config types: Since it is an alias to `[Char]`, the yaml parser expects a list...
When using configifier, one often gets very loud error messages, even if they are technically unrelated to configifier. My first thought is that it should be possible to newtype around...
Configifier seems to silently ignore unknown command line flags. It would be nice if it could somehow throw an error instead.
Personally I don't like YAML very much, as it is overly complicated. Maybe it would make sense to add support for [TOML](https://github.com/toml-lang/toml) which is a much more lightweight format? Downside...