From 7e1d2d26f0b7bd016f0cc13ed7add842fcd86ba4 Mon Sep 17 00:00:00 2001 From: Oscar Dowson Date: Tue, 18 Aug 2026 14:34:33 +1200 Subject: [PATCH] [docs] fix failing linkchecks --- .JuliaFormatter.toml | 2 +- docs/make.jl | 3 ++- docs/src/tutorials/implementing.md | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.JuliaFormatter.toml b/.JuliaFormatter.toml index a700a07686..386163da5b 100644 --- a/.JuliaFormatter.toml +++ b/.JuliaFormatter.toml @@ -1,5 +1,5 @@ # Configuration file for JuliaFormatter.jl -# For more information, see: https://domluna.github.io/JuliaFormatter.jl/stable/config/ +# For more information, see: https://JuliaEditorSupport.github.io/JuliaFormatter.jl/stable/config/ always_for_in = true always_use_return = true diff --git a/docs/make.jl b/docs/make.jl index cdd8dc62c5..f99d843a2a 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -163,8 +163,9 @@ Documenter.DocMeta.setdocmeta!( # Ignore the very many GitHub links r"https://github.com/jump-dev/.+", "https://arxiv.org/abs/2002.03447", - # https://github.com/JuliaDocs/Documenter.jl/issues/2834 "https://lpsolve.sourceforge.net/5.5/CPLEX-format.htm", + "https://www.ibm.com/docs/en/icos/22.1.0?topic=cplex-lp-file-format-algebraic-representation", + "https://www.ibm.com/docs/en/icos/22.1.1?topic=api-cpxmip-optimal-infeas", ], modules = [MathOptInterface], checkdocs = :exports, diff --git a/docs/src/tutorials/implementing.md b/docs/src/tutorials/implementing.md index 7fb6877a1b..25f5e3cb57 100644 --- a/docs/src/tutorials/implementing.md +++ b/docs/src/tutorials/implementing.md @@ -185,7 +185,7 @@ Project.toml * The `/test` folder contains code for testing your package. See [Setup tests](@ref) for more information. * The `.JuliaFormatter.toml` and `.github/workflows/format_check.yml` enforce - code formatting using [JuliaFormatter.jl](https://github.com/domluna/JuliaFormatter.jl). + code formatting using [JuliaFormatter.jl](https://github.com/JuliaEditorSupport/JuliaFormatter.jl). Check existing solvers or JuMP.jl for details. ### Documentation