1
0
mirror of synced 2025-12-23 03:44:00 -05:00

Create Linter Rule to Remove Quotes Around Internal Links (#53510)

Co-authored-by: Rachael Sewell <rachmari@github.com>
This commit is contained in:
Ashish Keshan
2025-01-10 17:33:08 -05:00
committed by GitHub
parent ecc1417c2b
commit 3a792f8cef
12 changed files with 133 additions and 10 deletions

View File

@@ -167,6 +167,12 @@ const githubDocsConfig = {
'partial-markdown-files': true,
'yml-files': true,
},
'link-quotation': {
// GHD043
severity: 'error',
'partial-markdown-files': true,
'yml-files': true,
},
}
export const githubDocsFrontmatterConfig = {
@@ -210,6 +216,11 @@ export const githubDocsFrontmatterConfig = {
severity: 'warning',
'partial-markdown-files': false,
},
'link-quotation': {
// GHD043
severity: 'error',
'partial-markdown-files': false,
},
}
// Configures rules from the `github/markdownlint-github` repo