From aa46b51ca7ca77017e41d9a38d1bf617ae0ed2f3 Mon Sep 17 00:00:00 2001 From: Alex Bates Date: Thu, 12 Oct 2023 10:49:57 +0100 Subject: [PATCH] lychee: ignore non-http schemes --- lychee.toml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/lychee.toml b/lychee.toml index d1e9846f..874b7f35 100644 --- a/lychee.toml +++ b/lychee.toml @@ -8,4 +8,13 @@ remap = [ "https://labs.leaningtech.com http://127.0.0.1:4321" ] # Check links inside `` and `
` blocks
 include_verbatim = true
 
-exclude = [ '.*(twitter|github|linkedin)\.com.*', 'http://127\.0\.0\.1:(8000|8080).*', '.*rpm\.leaningtech\.com.*', '.*mydomain\.com.*', '.*microsoft\.com.*', 'file://.*' ]
+exclude = [
+	'.*(twitter|github|linkedin)\.com.*',
+	'http://127\.0\.0\.1:(8000|8080).*',
+	'.*rpm\.leaningtech\.com.*',
+	'.*mydomain\.com.*',
+	'.*microsoft\.com.*',
+	'file://.*',
+	'chrome://.*',
+	'wss?://*'
+]