-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch to checking for dead links in the docs/CI HTML via Lychee (#733)
- Loading branch information
1 parent
62bb2f3
commit ec01950
Showing
4 changed files
with
23 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Maximum number of allowed retries before a link is declared dead. | ||
max_retries = 5 | ||
|
||
# Don't show interactive progress bar while checking links. | ||
no_progress = true | ||
|
||
# Website timeout from connect to response finished. | ||
timeout = 20 | ||
|
||
# Minimum wait time in seconds between retries of failed requests. | ||
retry_wait_time = 4 | ||
|
||
# Comma-separated list of accepted status codes for valid links. | ||
# accept = ["200", "206", "403", "429"] | ||
accept = ["200", "429"] | ||
|
||
verbose = "error" |