Use prune instead of recursive-exclude for venv*

Frankly not sure why recursive-exclude doesn't work here, but prune does, and that's good enough for me now. It's also probably preferable to only exclude venv* at the root, anyway.
This commit is contained in:
Jason Carver
2022-05-26 14:01:42 -07:00
committed by GitHub
parent d3a5a3e9e5
commit e2e1f9d079

View File

@ -6,4 +6,4 @@ global-include *.pyi
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
recursive-exclude * venv*
prune venv*