1
0
mirror of synced 2025-12-19 18:10:59 -05:00

Delete 'linkinator' dependency (#36242)

Co-authored-by: Kevin Heis <heiskr@users.noreply.github.com>
This commit is contained in:
Peter Bengtsson
2023-04-06 14:04:07 -04:00
committed by GitHub
parent 6990a4ae82
commit 9ff07444ea
4 changed files with 7 additions and 1416 deletions

1
.gitignore vendored
View File

@@ -6,7 +6,6 @@
/node_modules/ /node_modules/
npm-debug.log npm-debug.log
coverage/ coverage/
.linkinator
/assets/images/early-access /assets/images/early-access
/content/early-access /content/early-access
/data/early-access /data/early-access

1418
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -148,7 +148,6 @@
"jest-github-actions-reporter": "^1.0.3", "jest-github-actions-reporter": "^1.0.3",
"jest-slow-test-reporter": "^1.0.0", "jest-slow-test-reporter": "^1.0.0",
"kill-port": "2.0.1", "kill-port": "2.0.1",
"linkinator": "4.0.2",
"lint-staged": "^13.0.1", "lint-staged": "^13.0.1",
"make-promises-safe": "^5.1.0", "make-promises-safe": "^5.1.0",
"mdast-util-gfm-table": "^1.0.7", "mdast-util-gfm-table": "^1.0.7",

View File

@@ -79,10 +79,10 @@ const IGNORE_PATHS = [
'.vscode', // Not part of the repo but could be for a developer locally '.vscode', // Not part of the repo but could be for a developer locally
'node_modules', 'node_modules',
'translations', 'translations',
'.linkinator',
'**/*.png', // Do not check images or font files. '**/*.png', // Do not check images or font files.
'**/*.jpg', // We could just put all of assets/* here, but that would prevent any '**/*.jpg', // We could just put all of assets/* here, but that would prevent any
'**/*.gif', // READMEs or other text-based files from being checked. '**/*.gif', // READMEs or other text-based files from being checked.
'**/*.webp',
'**/*.pdf', '**/*.pdf',
'**/*.ico', '**/*.ico',
'**/*.woff', '**/*.woff',
@@ -90,7 +90,6 @@ const IGNORE_PATHS = [
'**/*.br', // E.g. the search index .json.br files '**/*.br', // E.g. the search index .json.br files
'**/*.graphql', // E.g. data/graphql/ghec/schema.docs.graphql '**/*.graphql', // E.g. data/graphql/ghec/schema.docs.graphql
'package-lock.json', // At the time of writing it's 1.5MB! 'package-lock.json', // At the time of writing it's 1.5MB!
'.linkinator/full.log', // Only present if you've run linkinator
'tests/**/*.json', 'tests/**/*.json',
'src/**/*.json', // OpenAPI schema files 'src/**/*.json', // OpenAPI schema files
'content/early-access', // Not committed to public repository. 'content/early-access', // Not committed to public repository.