You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The same behavior occurs when using a config file. In my case, pyproject.toml. This was suprising as one would expect that setting an option would override that option's defaults.
Obviously one could work around this using shell expansion (doc8 **/*.rst), and thats ok for command line use. But, my ultimate goal is to control doc8 via config file like I do with other tooling, and doing:
As an aside, while taking a quick poke with pdb, it doesn't appear that any normalization/de-duplication happens when merging the "extension" setting. Maybe it happens later? 🤷
I don't want to check
.rst
or.txt
files, only.bar
files.Given:
running
doc8
gives:The same behavior occurs when using a config file. In my case,
pyproject.toml
. This was suprising as one would expect that setting an option would override that option's defaults.Obviously one could work around this using shell expansion (
doc8 **/*.rst
), and thats ok for command line use. But, my ultimate goal is to controldoc8
via config file like I do with other tooling, and doing:is just inelegant.
The text was updated successfully, but these errors were encountered: