econchick / interrogate

Explain yourself! Interrogate a codebase for docstring coverage.
https://interrogate.readthedocs.io
MIT License
574 stars 44 forks source link

Document what level of `verbose` `-vv` corresponds to #83

Closed RoyalTS closed 3 years ago

RoyalTS commented 3 years ago

I take it the -v option corresponds to verbose=1. Does -vv correspond to verbose=2?

econchick commented 3 years ago

hey @RoyalTS - just to be clear, you are requesting better docs around verbose when setting it in config, e.g. pyproject.toml?

RoyalTS commented 3 years ago

Yeah, sorry, should have been clearer. I'm asking for the correspondence between the command-line arguments and the settings.

econchick commented 3 years ago

Gotcha! So sorry for the confusion, I’ll definitely update the docs for better clarity.

And yeah, you have it correct: in config, if you want no verbosity, then it’s verbose = 0. If you want the equivalent of -v, then it’s verbose = 1. And -vv is verbose = 2.

econchick commented 3 years ago

(finally) addressed this in #89 - sorry for the delay, thanks!