We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ae15d4e commit e07510eCopy full SHA for e07510e
flake.nix
@@ -327,6 +327,16 @@
327
# https://nixos.org/manual/nixpkgs/stable/index.html#tester-lycheeLinkCheck
328
linkcheck = pkgs.testers.lycheeLinkCheck {
329
site = self.packages.${system}.nix-manual + "/share/doc/nix/manual";
330
+ extraConfig = {
331
+ exclude = [
332
+ # Exclude auto-generated JSON schema documentation which has
333
+ # auto-generated fragment IDs that don't match the link references
334
+ ".*/protocols/json/.*\\.html"
335
+ # Exclude undocumented builtins
336
+ ".*/language/builtins\\.html#builtins-addErrorContext"
337
+ ".*/language/builtins\\.html#builtins-appendContext"
338
+ ];
339
+ };
340
};
341
}
342
// (import ./ci/gha/tests {
0 commit comments