Skip to content
New issue

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

[Doc] Turn on nitpicky mode #46103

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
# cross-reference to the Python function “filter”. The default is None, which doesn’t
# reassign the default role.

default_role = "py:obj"
default_role = "code"
peytondmurray marked this conversation as resolved.
Show resolved Hide resolved

sys.path.append(os.path.abspath("./_ext"))

Expand Down Expand Up @@ -92,6 +92,9 @@

myst_heading_anchors = 3

nitpicky = True
peytondmurray marked this conversation as resolved.
Show resolved Hide resolved
nitpick_ignore_regex = [("py:class", ".*")]
peytondmurray marked this conversation as resolved.
Show resolved Hide resolved

# Cache notebook outputs in _build/.jupyter_cache
# To prevent notebook execution, set this to "off". To force re-execution, set this to
# "force". To cache previous runs, set this to "cache".
Expand Down
Loading