From 5570bdba7eb7961c3351294af814effed3d75301 Mon Sep 17 00:00:00 2001 From: Trask Stalnaker Date: Wed, 8 Jan 2025 05:30:27 -0800 Subject: [PATCH] Fix lychee (markdown link check) toml config (#4350) Just discovered a bug I introduced when switching from command-line config to toml config --- .lychee.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.lychee.toml b/.lychee.toml index 8868926f43c..b2845e6aecf 100644 --- a/.lychee.toml +++ b/.lychee.toml @@ -1,8 +1,8 @@ -include-fragments = true +include_fragments = true accept = ["200..=299", "403"] -exclude = [ +exclude = [ # excluding links to pull requests and issues is done for performance "^https://github.com/open-telemetry/opentelemetry-specification/(issue|pull)/\\d+$", # TODO (trask) look into this @@ -10,4 +10,4 @@ exclude = [ ] # better to be safe and avoid failures -max-retries = 6 +max_retries = 6