We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3e48ef2 commit d1cd81bCopy full SHA for d1cd81b
1 file changed
docs/make.jl
@@ -131,7 +131,16 @@ end
131
clean = true,
132
strict = true,
133
linkcheck = true,
134
- linkcheck_ignore = ["MathOptInterface.pdf"],
+ linkcheck_ignore = [
135
+ # Ignore the PDF link, because it hasn't been built yet.
136
+ "MathOptInterface.pdf",
137
+ # Ignore tags, because preping for a new release will otherwise cause it
138
+ # to fail.
139
+ r"https://github.com/jump-dev/MathOptInterface.jl/releases/tag/v([0-9]).([0-9]+).([0-9]+)",
140
+ # Ignore issue and pull request links, because there are many of them,
141
+ # and they sometimes time-out the linkcheck.
142
+ r"https://github.com/jump-dev/MathOptInterface.jl/issues/([0-9]+)",
143
+ ],
144
modules = [MathOptInterface],
145
checkdocs = :exports,
146
doctest = _FIX ? :fix : true,
0 commit comments