-
Notifications
You must be signed in to change notification settings - Fork 276
New issue
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
cli: read optional config from YAMLLINT_CONFIG #119
base: master
Are you sure you want to change the base?
cli: read optional config from YAMLLINT_CONFIG #119
Conversation
This is a "minor" abi break since empty configs are disregarded instead of failing. Fixes: adrienverge#107
2 similar comments
So, my minor logic change now left us with a few uncovered branches. Suggestions on how to tackle this? Add tests? Different route for handling the parsing of environment variables? |
@adrienverge any input on above? |
Hi Johan, thanks, this looks good. The API break is not problematic in my opinion, as empty config data resulted in an error. Could you explain your comment on the few uncovered branches? I didn't get it. About tests:
|
Also, using |
@jbergstroem if you want to continue on this pull request, using |
This is a "minor" abi break (?) since empty configs are disregarded instead of failing.
Fixes: #107