mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-25 23:27:56 +00:00
0c166ae019
Bumps [lycheeverse/lychee-action](https://github.com/lycheeverse/lychee-action) from fdea7032675810093199f485fe075f057cc37b3e to c3089c702fbb949e3f7a8122be0c33c017904f9b. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/lycheeverse/lychee-action/commit/c3089c702fbb949e3f7a8122be0c33c017904f9b"><code>c3089c7</code></a> Bump to lychee 0.14.1</li> <li>See full diff in <a href="https://github.com/lycheeverse/lychee-action/compare/fdea7032675810093199f485fe075f057cc37b3e...c3089c702fbb949e3f7a8122be0c33c017904f9b">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --------- Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergejs Kostjucenko <85877331+sergejparity@users.noreply.github.com> Co-authored-by: Oliver Tale-Yazdi <oliver.tale-yazdi@parity.io>
55 lines
2.4 KiB
TOML
55 lines
2.4 KiB
TOML
# Config file for lychee link checker: <https://github.com/lycheeverse/lychee>
|
|
# Run with `lychee -c .config/lychee.toml ./**/*.rs ./**/*.prdoc`
|
|
|
|
cache = true
|
|
max_cache_age = "1d"
|
|
max_redirects = 10
|
|
max_retries = 6
|
|
|
|
# Exclude localhost et.al.
|
|
exclude_all_private = true
|
|
|
|
# Treat these codes as success condition:
|
|
accept = [
|
|
# Ok
|
|
"200",
|
|
|
|
# Rate limited - GitHub likes to throw this.
|
|
"429",
|
|
]
|
|
|
|
exclude_path = ["./target"]
|
|
|
|
exclude = [
|
|
# Place holders (no need to fix these):
|
|
"http://visitme/",
|
|
"https://visitme/",
|
|
|
|
# TODO <https://github.com/paritytech/polkadot-sdk/issues/134>
|
|
"https://docs.substrate.io/main-docs/build/custom-rpc/#public-rpcs",
|
|
"https://docs.substrate.io/rustdocs/latest/sp_api/macro.decl_runtime_apis.html",
|
|
"https://github.com/ipfs/js-ipfs-bitswap/blob/",
|
|
"https://github.com/paritytech/polkadot-sdk/substrate/frame/timestamp",
|
|
"https://github.com/paritytech/substrate/frame/fast-unstake",
|
|
"https://github.com/zkcrypto/bls12_381/blob/e224ad4ea1babfc582ccd751c2bf128611d10936/src/test-data/mod.rs",
|
|
"https://polkadot.network/the-path-of-a-parachain-block/",
|
|
"https://research.web3.foundation/en/latest/polkadot/BABE/Babe/#6-practical-results",
|
|
"https://research.web3.foundation/en/latest/polkadot/NPoS/3.%20Balancing.html",
|
|
"https://research.web3.foundation/en/latest/polkadot/Token%20Economics.html#inflation-model",
|
|
"https://research.web3.foundation/en/latest/polkadot/block-production/Babe.html",
|
|
"https://research.web3.foundation/en/latest/polkadot/block-production/Babe.html#-6.-practical-results",
|
|
"https://research.web3.foundation/en/latest/polkadot/networking/3-avail-valid.html#topology",
|
|
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html",
|
|
"https://research.web3.foundation/en/latest/polkadot/overview/2-token-economics.html#inflation-model",
|
|
"https://research.web3.foundation/en/latest/polkadot/slashing/npos.html",
|
|
"https://rpc.polkadot.io/",
|
|
"https://w3f.github.io/parachain-implementers-guide/node/approval/approval-distribution.html",
|
|
"https://w3f.github.io/parachain-implementers-guide/node/index.html",
|
|
"https://w3f.github.io/parachain-implementers-guide/protocol-chain-selection.html",
|
|
"https://w3f.github.io/parachain-implementers-guide/runtime/session_info.html",
|
|
|
|
# Behind a captcha (code 403):
|
|
"https://iohk.io/en/blog/posts/2023/11/03/partner-chains-are-coming-to-cardano/",
|
|
"https://www.reddit.com/r/rust/comments/3spfh1/does_collect_allocate_more_than_once_while/",
|
|
]
|