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

add markdownlint search and replace rule (#41371)

This commit is contained in:
Rachael Sewell
2023-08-29 14:09:30 -07:00
committed by GitHub
parent 013af974aa
commit c144dba8c5
6 changed files with 56 additions and 9 deletions

View File

@@ -29,4 +29,17 @@ export const githubDocsConfig = {
severity: 'error',
'partial-markdown-files': true,
},
'search-replace': {
severity: 'error',
'severity-local-env': 'warning',
'partial-markdown-files': true,
rules: [
{
name: 'todocs-placeholder',
message: 'Catch occurrences of TODOCS placeholder.',
search: 'TODOCS',
searchScope: 'all',
},
],
},
}