-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a target to find dead links in our documentation. #3713
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 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,98 @@ | ||
### | ||
### Display | ||
### | ||
# Verbose program output | ||
verbose = false | ||
|
||
# Show progress | ||
progress = false | ||
|
||
|
||
### | ||
### Runtime | ||
### | ||
# Number of threads to utilize. | ||
# Defaults to number of cores available to the system if omitted. | ||
#threads = 2 | ||
|
||
# Maximum number of allowed redirects | ||
max_redirects = 10 | ||
|
||
|
||
### | ||
### Requests | ||
### | ||
# User agent to send with each request | ||
user_agent = "curl/7.71.1" | ||
|
||
# Website timeout from connect to response finished | ||
timeout = 9 | ||
|
||
# Comma-separated list of accepted status codes for valid links. | ||
# Omit to accept all response types. | ||
#accept = "text/html" | ||
|
||
# Proceed for server connections considered insecure (invalid TLS) | ||
insecure = true | ||
|
||
# Only test links with the given scheme (e.g. https) | ||
# Omit to check links with any scheme | ||
#scheme = "https" | ||
|
||
# Request method | ||
method = "get" | ||
|
||
# Custom request headers | ||
headers = [] | ||
|
||
|
||
### | ||
### Exclusions | ||
### | ||
# Exclude URLs from checking (supports regex) | ||
exclude = [ | ||
# "github", todo github token | ||
"file://.*", | ||
"host.docker.internal:3100", | ||
"fileb://.*", | ||
"ec2-user@.*.compute.amazonaws.com", | ||
"querier", | ||
"loki:3100", | ||
"ip_or_hostname_where_loki_run:3100", | ||
"dynamodb://.*", | ||
"s3://.*", | ||
"ec2-13-59-62-37", | ||
"promtail.default", | ||
"loki_addr:3100", | ||
"localhost", | ||
"example.com", | ||
"HelloAkkaHttpServer", | ||
"https://loki/", | ||
"http://loki/", | ||
"logs-prod-us-central1.grafana.net", | ||
"ip_or_hostname_where_loki_runs", | ||
"inmemory://", | ||
"myloki.domain:3100", | ||
"grafana/cortex-rules-action@v0.4.0", | ||
"loki.git", | ||
"https://github.com/grafana/website", | ||
"https://github.com/settings/keys", | ||
] | ||
|
||
include = [] | ||
|
||
# Exclude all private IPs from checking | ||
# Equivalent to setting `exclude_private`, `exclude_link_local`, and `exclude_loopback` to true | ||
exclude_all_private = false | ||
|
||
# Exclude private IP address ranges from checking | ||
exclude_private = false | ||
|
||
# Exclude link-local IP address range from checking | ||
exclude_link_local = false | ||
|
||
# Exclude loopback IP address range from checking | ||
exclude_loopback = true | ||
|
||
# Exclude all mail addresses from checking | ||
exclude_mail = false |
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 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 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 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 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Q: why
lychee?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That's the only one I found that is not nodejs and ruby. Which both requires to install the VM to run those and that's just a nono.