Fail on broken anchors (#3644)

This commit is contained in:
qwerty287 2024-04-25 08:29:49 +02:00 committed by GitHub
parent b2cfa37682
commit b5bc1cf48a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View file

@ -1,6 +1,6 @@
# Addon forges # Addon forges
If the forge you're using does not comply with [Woodpecker's requirements](../../92-development/02-core-ideas.md#forge) or your setup is too specific to be added to Woodpecker's core, you can write your own forge using an addon forge. If the forge you're using does not comply with [Woodpecker's requirements](../../92-development/02-core-ideas.md#forges) or your setup is too specific to be added to Woodpecker's core, you can write your own forge using an addon forge.
:::warning :::warning
Addon forges are still experimental. Their implementation can change and break at any time. Addon forges are still experimental. Their implementation can change and break at any time.

View file

@ -10,6 +10,7 @@ const config: Config = {
baseUrl: '/', baseUrl: '/',
onBrokenLinks: 'throw', onBrokenLinks: 'throw',
onBrokenMarkdownLinks: 'throw', onBrokenMarkdownLinks: 'throw',
onBrokenAnchors: 'throw',
onDuplicateRoutes: 'throw', onDuplicateRoutes: 'throw',
organizationName: 'woodpecker-ci', organizationName: 'woodpecker-ci',
projectName: 'woodpecker-ci.github.io', projectName: 'woodpecker-ci.github.io',