Skip to content

Commit 112891a

Browse files
authored
Merge pull request #18590 from github/ignore-images-in-meta-test
Do not check images in meta test
2 parents 22e8d75 + 938f3dc commit 112891a

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

tests/meta/repository-references.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,13 @@ describe('check for repository references', () => {
5757
'lib/excluded-links.js',
5858
'content/early-access',
5959
'data/early-access',
60-
'data/release-notes' // These include links to internal issues in Liquid comments
60+
'data/release-notes', // These include links to internal issues in Liquid comments.
61+
'**/*.png', // Do not check images or font files.
62+
'**/*.jpg', // We could just put all of assets/* here, but that would prevent any
63+
'**/*.gif', // READMEs or other text-based files from being checked.
64+
'**/*.pdf',
65+
'**/*.ico',
66+
'**/*.woff'
6167
]
6268
})
6369

0 commit comments

Comments
 (0)