mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 14:30:12 +01:00
Add exclusion for test repo file with newly-reported violation (remove outdated exclusion).
This commit is contained in:
parent
72543a82e7
commit
7b810c48a9
1 changed files with 2 additions and 3 deletions
|
|
@ -102,11 +102,10 @@ if (existsSync(dotnetDocsDir)) {
|
||||||
const globPatterns = [
|
const globPatterns = [
|
||||||
join(rootDir, "**/*.md"),
|
join(rootDir, "**/*.md"),
|
||||||
"!" + join(rootDir, "samples/**/*.md"),
|
"!" + join(rootDir, "samples/**/*.md"),
|
||||||
// A table parsing change in markdown-it v12 causes a new issue here
|
// MD044 newly detects an issue in this file
|
||||||
"!" + join(
|
"!" + join(
|
||||||
rootDir,
|
rootDir,
|
||||||
"docs/standard/base-types/" +
|
"docs/framework/wcf/feature-details/configuring-iis-for-wcf.md"
|
||||||
"regular-expression-example-scanning-for-hrefs.md"
|
|
||||||
)
|
)
|
||||||
];
|
];
|
||||||
const configPath = join(rootDir, ".markdownlint.json");
|
const configPath = join(rootDir, ".markdownlint.json");
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue