We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f40e4cf commit b5e7972Copy full SHA for b5e7972
1 file changed
docs/source/conf.py
@@ -67,6 +67,24 @@
67
with open("_static/links.rst", encoding="utf-8") as f:
68
rst_epilog += f.read()
69
70
+############ Options for nitpicky mode ############
71
+
72
+# In nitpicky mode, Sphinx will warn about all references where the target
73
+# cannot be found.
74
+nitpicky = True
75
76
+# A set or list of (warning_type, target) tuples that should be ignored when
77
+# generating warnings in "nitpicky mode".
78
+# See https://github.com/sphinx-doc/sphinx/issues/10785 for why the numpy ones
79
+# don't work.
80
+nitpick_ignore = {
81
+ ("py:class", "Element"),
82
+ ("py:class", "Letter"),
83
+ ("py:class", "Point"),
84
+ ("py:class", "Range"),
85
+ ("py:class", "Word"),
86
+ ("py:class", "numpy.float64"),
87
+}
88
89
############ Options for source files ############
90
0 commit comments