fix(config): update ignore patterns for dead links and add coverage directory to .gitignore

This commit is contained in:
Snider 2026-01-26 21:37:33 +00:00
parent 3d407ed5d3
commit f3125b8fa0
2 changed files with 14 additions and 4 deletions

3
.gitignore vendored
View file

@ -17,4 +17,5 @@ public/build
/storage/framework
.phpunit.result.cache
.phpunit.cache
/coverage
/coverage
/docs/.vitepress/dist

View file

@ -8,15 +8,24 @@ export default defineConfig({
ignoreDeadLinks: [
// Ignore localhost links
/^https?:\/\/localhost/,
// Ignore internal doc links that haven't been created yet
/\/packages\/admin\/(tables|security)/,
// Old monorepo changelog paths (packages now in separate repos)
/\/packages\/core-(php|admin|api|mcp)\/changelog/,
// Security pages not yet created
/\/security\/(api-authentication|rate-limiting|workspace-isolation|sql-validation|gdpr)/,
// Package pages not yet created
/\/packages\/admin\/(tables|security|hlcrf|activity)/,
/\/packages\/api\/(openapi|analytics|alerts|logging)/,
/\/packages\/mcp\/commerce/,
/\/packages\/core\/(services|seeders|security|email-shield|action-gate|i18n)/,
// Architecture pages not yet created
/\/architecture\/(custom-events|performance)/,
// Patterns pages not yet created
/\/patterns-guide\/(multi-tenancy|workspace-caching|search|admin-menus|services|repositories|responsive-design|factories|webhooks)/,
// Other pages not yet created
/\/testing\//,
/\/contributing/,
/\/guide\/testing/,
// Ignore changelog relative paths
// Ignore relative changelog paths
/\.\/packages\//,
],