Mathis Lövenich

Results 5 issues of Mathis Lövenich

A config file like: ``` values = [] ``` resolves in: `values=['']` it's unpleasent to have this empyt string. Instead it should be possible to just get an empty list.

If `default_config_files` is set to: ``` ["/etc/conf/app_config.ini", "/etc/conf/conf-enabled/*.ini", "~/.my_app_config.ini", "./app_config.txt"] ``` It would be nice to be able to tell which one was used. Something like: `get_used_config_path()` Or let `parse_args`...

It would be nice to have an option like `--ignore-config` to ignore even the default config paths

Some commandline parameters should be disabled. In my case I want to have a `verbose` mode, which should one be activated via the command line.

In my scenrio I have values being set in the config file like: `ignore = [errors]` Starting my script with: `htcanalyze --ignore recources` will override the internal list `ignore =...