We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
-i
--ignore
When I run sphinx-lint -i .venv .tox I was expecting sphinx-lint to ignore both .venv and .tox directories but it isn't the case.
sphinx-lint -i .venv .tox
sphinx-lint
.venv
.tox
For it to work, I need to do sphinx-lint -i .venv -i .tox which is kind of ugly IMO
sphinx-lint -i .venv -i .tox
The text was updated successfully, but these errors were encountered:
This could be done by changing from append to extend which was introduced in Python 3.8 (which is now the earliest supported version of sphinx-lint).
append
extend
action="extend", nargs="+", type=str
Sorry, something went wrong.
No branches or pull requests
When I run
sphinx-lint -i .venv .tox
I was expectingsphinx-lint
to ignore both.venv
and.tox
directories but it isn't the case.For it to work, I need to do
sphinx-lint -i .venv -i .tox
which is kind of ugly IMOThe text was updated successfully, but these errors were encountered: