From aac5da782576c4dde782f466bb2d70fce45304b9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Sun, 19 Nov 2023 07:52:11 +0000 Subject: [PATCH] ignore internal links --- lychee.toml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 lychee.toml diff --git a/lychee.toml b/lychee.toml new file mode 100644 index 00000000000..33c2f946bdf --- /dev/null +++ b/lychee.toml @@ -0,0 +1,11 @@ +exclude = [ + # these are private repositories, presumably any link to it are in internal documentation only. + "^https://github.com/near/near-ops.*", + "^https://github.com/near/nearcore-private.*", + + # localhost is linked to refer to services supposed to be running on the host. + "^http://localhost.*", + + # jsonrpc internal links + "debug/.*", +]