Hiya, first of all thank you for providing an arg-parsing library with such a readable interface.
@Option( description = "Whether allPosts should be set", defaultValue = "true" )
boolean getAllPosts();
Given this, I'd like --all-posts to set the option (IE do nothing as default is true) while --no-all-posts sets it false. I'd imagine this could be made available to all options of type boolean/Boolean automatically.
I could easily rename the option getNoAllPosts and will do so for now, but I prefer positive logic when possible. I now have the slightly dizzying: