diff --git a/README.md b/README.md index 74803df3..9e2c6c43 100644 --- a/README.md +++ b/README.md @@ -888,7 +888,8 @@ All of which return an object like: "errorDetail": "Column: 17", "errorContext": null, "errorRange": [ 17, 1 ], - "fixInfo": { "editColumn": 17, "deleteCount": 1, "insertText": ' ' } } + "fixInfo": { "editColumn": 17, "deleteCount": 1, "insertText": " " }, + "severity": "error" }, { "lineNumber": 1, "ruleNames": [ "MD018", "no-missing-space-atx" ], "ruleDescription": "No space after hash on atx style heading", @@ -896,7 +897,8 @@ All of which return an object like: "errorDetail": null, "errorContext": "#bad.md", "errorRange": [ 1, 2 ], - "fixInfo": { "editColumn": 2, "insertText": ' ' } } + "fixInfo": { "editColumn": 2, "insertText": " " }, + "severity": "error" }, { "lineNumber": 3, "ruleNames": [ "MD018", "no-missing-space-atx" ], "ruleDescription": "No space after hash on atx style heading", @@ -904,7 +906,8 @@ All of which return an object like: "errorDetail": null, "errorContext": "#This file fails\tsome rules.", "errorRange": [ 1, 2 ], - "fixInfo": { "editColumn": 2, "insertText": ' ' } } + "fixInfo": { "editColumn": 2, "insertText": " " }, + "severity": "error" }, { "lineNumber": 1, "ruleNames": [ "MD041", "first-line-heading", "first-line-h1" ], "ruleDescription": "First line in a file should be a top-level heading", @@ -912,7 +915,8 @@ All of which return an object like: "errorDetail": null, "errorContext": "#bad.md", "errorRange": null, - "fixInfo": null } + "fixInfo": null, + "severity": "error" } ] } ``` diff --git a/example/typescript/type-check.ts b/example/typescript/type-check.ts index 4bc3e04c..e968f4ef 100644 --- a/example/typescript/type-check.ts +++ b/example/typescript/type-check.ts @@ -59,7 +59,8 @@ function assertLintResults(results: LintResults) { "editColumn": 1, "deleteCount": 1, "insertText": "text" - } + }, + "severity": "error" } ] }; diff --git a/helpers/helpers.cjs b/helpers/helpers.cjs index 3572bbd5..37bb9065 100644 --- a/helpers/helpers.cjs +++ b/helpers/helpers.cjs @@ -556,6 +556,8 @@ function convertLintErrorsVersion3To2(errors) { return errors.filter((error, index, array) => { // @ts-ignore delete error.fixInfo; + // @ts-ignore + delete error.severity; const previous = array[index - 1] || noPrevious; return ( (error.ruleNames[0] !== previous.ruleNames[0]) || @@ -660,7 +662,7 @@ module.exports.formatLintResults = function formatLintResults(lintResults) { entries.sort((a, b) => a[0].localeCompare(b[0])); for (const [ source, lintErrors ] of entries) { for (const lintError of lintErrors) { - const { lineNumber, ruleNames, ruleDescription, errorDetail, errorContext, errorRange } = lintError; + const { lineNumber, ruleNames, ruleDescription, errorDetail, errorContext, errorRange, severity } = lintError; const rule = ruleNames.join("/"); const line = `:${lineNumber}`; const rangeStart = (errorRange && errorRange[0]) || 0; @@ -668,7 +670,7 @@ module.exports.formatLintResults = function formatLintResults(lintResults) { const description = ruleDescription; const detail = (errorDetail ? ` [${errorDetail}]` : ""); const context = (errorContext ? ` [Context: "${errorContext}"]` : ""); - results.push(`${source}${line}${column} ${rule} ${description}${detail}${context}`); + results.push(`${source}${line}${column} ${severity} ${rule} ${description}${detail}${context}`); } } return results; diff --git a/lib/markdownlint.d.mts b/lib/markdownlint.d.mts index 98550b53..306c4aca 100644 --- a/lib/markdownlint.d.mts +++ b/lib/markdownlint.d.mts @@ -463,6 +463,10 @@ export type LintError = { * Fix information. */ fixInfo: FixInfo | null; + /** + * Severity of the error. + */ + severity: "error" | "warning"; }; /** * Fix information. diff --git a/lib/markdownlint.mjs b/lib/markdownlint.mjs index 73194b20..50a30497 100644 --- a/lib/markdownlint.mjs +++ b/lib/markdownlint.mjs @@ -637,7 +637,8 @@ function lintContent( "errorDetail": errorInfo.detail?.replace(helpers.newLineRe, " ") || null, "errorContext": errorInfo.context?.replace(helpers.newLineRe, " ") || null, "errorRange": errorInfo.range ? [ ...errorInfo.range ] : null, - "fixInfo": fixInfo ? cleanFixInfo : null + "fixInfo": fixInfo ? cleanFixInfo : null, + "severity": "error" }); } // Call (possibly external) rule function to report errors @@ -1501,6 +1502,7 @@ export function getVersion() { * @property {string} errorContext Context for the error. * @property {number[]|null} errorRange Column number (1-based) and length. * @property {FixInfo|null} fixInfo Fix information. + * @property {"error" | "warning"} severity Severity of the error. */ /** diff --git a/test/markdownlint-test-custom-rules.mjs b/test/markdownlint-test-custom-rules.mjs index 0cb331d6..da3d5088 100644 --- a/test/markdownlint-test-custom-rules.mjs +++ b/test/markdownlint-test-custom-rules.mjs @@ -970,7 +970,8 @@ test("customRulesDefinitionStatic", (t) => new Promise((resolve) => { "errorDetail": null, "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -1428,7 +1429,8 @@ test("customRulesOnErrorLazy", (t) => new Promise((resolve) => { "errorDetail": null, "errorContext": null, "errorRange": [ 1, 1 ], - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -1492,7 +1494,8 @@ test("customRulesOnErrorModified", (t) => new Promise((resolve) => { "editColumn": 1, "deleteCount": 2, "insertText": "text" - } + }, + "severity": "error" } ] }; @@ -1535,7 +1538,8 @@ test("customRulesOnErrorInvalidHandled", (t) => new Promise((resolve) => { "Value of 'lineNumber' passed to onError by 'NAME' is incorrect for 'string'.", "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -1578,7 +1582,8 @@ test("customRulesOnErrorInvalidHandledSync", (t) => { "Value of 'lineNumber' passed to onError by 'NAME' is incorrect for 'string'.", "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -1895,7 +1900,8 @@ test("customRulesLintJavaScript", (t) => new Promise((resolve) => { "errorDetail": "'console' is not defined.", "errorContext": "console.log(x);", "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -1923,7 +1929,8 @@ test("customRulesValidateJson", (t) => new Promise((resolve) => { "ruleInformation": null, "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -2143,7 +2150,8 @@ test("customRulesAsyncReadFiles", (t) => { "fixInfo": { "editColumn": 10, "insertText": "\n" - } + }, + "severity": "error" }, { "lineNumber": 1, @@ -2153,7 +2161,8 @@ test("customRulesAsyncReadFiles", (t) => { "errorDetail": "detail1", "errorContext": "context1", "errorRange": [ 2, 3 ], - "fixInfo": null + "fixInfo": null, + "severity": "error" }, { "lineNumber": 1, @@ -2163,7 +2172,8 @@ test("customRulesAsyncReadFiles", (t) => { "errorDetail": "detail2", "errorContext": "context2", "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -2214,7 +2224,8 @@ test("customRulesAsyncIgnoresSyncReturn", (t) => { "errorDetail": null, "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" }, { "lineNumber": 1, @@ -2227,7 +2238,8 @@ test("customRulesAsyncIgnoresSyncReturn", (t) => { "fixInfo": { "editColumn": 10, "insertText": "\n" - } + }, + "severity": "error" } ] }; @@ -2285,7 +2297,8 @@ for (const flavor of [ "errorDetail": `This rule threw an exception: ${errorMessage}`, "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; @@ -2455,7 +2468,8 @@ for (const flavor of [ "errorDetail": `This rule threw an exception: ${errorMessage}`, "errorContext": null, "errorRange": null, - "fixInfo": null + "fixInfo": null, + "severity": "error" } ] }; diff --git a/test/markdownlint-test-helpers.mjs b/test/markdownlint-test-helpers.mjs index 5b72dabd..ce507f2a 100644 --- a/test/markdownlint-test-helpers.mjs +++ b/test/markdownlint-test-helpers.mjs @@ -537,10 +537,10 @@ test("formatLintResults", async(t) => { t.deepEqual( formatLintResults(lintResults), [ - "content:1:3 MD019/no-multiple-space-atx Multiple spaces after hash on atx style heading [Context: \"# Heading\"]", - "content:1 MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: \"# Heading\"]", - "content:2:1 MD033/no-inline-html Inline HTML [Element: br]", - "content:2:5 MD047/single-trailing-newline Files should end with a single newline character" + "content:1:3 error MD019/no-multiple-space-atx Multiple spaces after hash on atx style heading [Context: \"# Heading\"]", + "content:1 error MD022/blanks-around-headings Headings should be surrounded by blank lines [Expected: 1; Actual: 0; Below] [Context: \"# Heading\"]", + "content:2:1 error MD033/no-inline-html Inline HTML [Element: br]", + "content:2:5 error MD047/single-trailing-newline Files should end with a single newline character" ] ); }); diff --git a/test/markdownlint-test-result-object.mjs b/test/markdownlint-test-result-object.mjs index 87e38d4a..41f4ef81 100644 --- a/test/markdownlint-test-result-object.mjs +++ b/test/markdownlint-test-result-object.mjs @@ -370,7 +370,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "fixInfo": { "editColumn": 10, "deleteCount": 3 - } + }, + "severity": "error" }, { "lineNumber": 3, @@ -384,7 +385,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "editColumn": 5, "deleteCount": 1, "insertText": " " - } + }, + "severity": "error" }, { "lineNumber": 3, @@ -398,7 +400,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "editColumn": 10, "deleteCount": 2, "insertText": " " - } + }, + "severity": "error" }, { "lineNumber": 4, @@ -411,7 +414,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "fixInfo": { "editColumn": 7, "deleteCount": 1 - } + }, + "severity": "error" }, { "lineNumber": 4, @@ -424,7 +428,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "fixInfo": { "editColumn": 16, "deleteCount": 1 - } + }, + "severity": "error" }, { "lineNumber": 4, @@ -437,7 +442,8 @@ test("resultFormattingV3", (t) => new Promise((resolve) => { "fixInfo": { "insertText": "\n", "editColumn": 23 - } + }, + "severity": "error" } ] }; @@ -568,7 +574,8 @@ test("manyPerLineResultVersion3", (t) => new Promise((resolve) => { "editColumn": 10, "deleteCount": 1, "insertText": " " - } + }, + "severity": "error" }, { "lineNumber": 1, @@ -583,7 +590,8 @@ test("manyPerLineResultVersion3", (t) => new Promise((resolve) => { "editColumn": 18, "deleteCount": 2, "insertText": " " - } + }, + "severity": "error" } ] }; @@ -617,7 +625,8 @@ test("frontMatterResultVersion3", (t) => new Promise((resolve) => { "fixInfo": { "lineNumber": 4, "insertText": "\n" - } + }, + "severity": "error" } ] }; diff --git a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md index 8e41b4fa..be86a19c 100644 --- a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md +++ b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.md @@ -8,13 +8,13 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/dotnet-docs/README.md:21:383 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊ - test-repos/dotnet-docs/README.md:39:451 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊ - test-repos/dotnet-docs/SECURITY.md:21:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:22:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:23:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:24:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:25:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:26:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:27:1 MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ - test-repos/dotnet-docs/SECURITY.md:17:252 MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]` + `test-repos/dotnet-docs/README.md:21:383 error MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊ + test-repos/dotnet-docs/README.md:39:451 error MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]␊ + test-repos/dotnet-docs/SECURITY.md:21:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:22:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:23:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:24:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:25:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:26:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:27:1 error MD007/ul-indent Unordered list indentation [Expected: 0; Actual: 2]␊ + test-repos/dotnet-docs/SECURITY.md:17:252 error MD009/no-trailing-spaces Trailing spaces [Expected: 0 or 2; Actual: 1]` diff --git a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap index 6e211bc9..7f95115b 100644 Binary files a/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap and b/test/snapshots/markdownlint-test-repos-dotnet-docs.mjs.snap differ diff --git a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md index f8e09a68..3ff8cefa 100644 --- a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md +++ b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.md @@ -8,71 +8,71 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/mdn-content/files/en-us/glossary/denial_of_service/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/flex/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/function/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/https_rr/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/parameter/index.md:31 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/prefetch/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/session_hijacking/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/time_to_interactive/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h4]␊ - test-repos/mdn-content/files/en-us/glossary/truthy/index.md:30 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/xhtml/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/glossary/xlink/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/learn_web_development/howto/solve_html_problems/index.md:11 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/add-ons/contact_us/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/externally_connectable/index.md:53 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/host_permissions/index.md:39 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/dom_improvements/index.md:20 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/full_page_zoom/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/notable_bugs_fixed/index.md:26 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/templates/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/accessibility/aria/how_to/file_aria-related_bugs/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/canvasrenderingcontext2d/save/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/expectedimprovement/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/presentationarea/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/fetchevent/respondwith/index.md:30 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/htmlelement/dataset/index.md:40 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/htmlelement/editcontext/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/reportbody/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/bytesdiscardedonsend/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsdiscardedonsend/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/foundation/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/priority/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/usernamefragment/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcrtpreceiver/transform/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/rtcrtpsender/transform/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/texttrack/mode/index.md:21 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/css/css_backgrounds_and_borders/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/css/css_selectors/selector_structure/index.md:14 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/css/font-variant-caps/index.md:54 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/attributes/crossorigin/index.md:63 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/attributes/maxlength/index.md:18 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/attributes/required/index.md:26 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/elements/input/time/index.md:43 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/data-_star_/index.md:73 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/itemscope/index.md:19 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/display_override/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/file_handlers/index.md:22 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/launch_handler/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/note_taking/index.md:15 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/protocol_handlers/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/serviceworker/index.md:16 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/share_target/index.md:20 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/progressive_web_apps/tutorials/js13kgames/app_structure/index.md:17 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/svg/guides/namespaces_crash_course/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/svg/guides/scripting/index.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/svg/tutorials/svg_from_scratch/other_content_in_svg/index.md:12 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/webdriver/reference/capabilities/firefoxoptions/index.md:18 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h5]␊ - test-repos/mdn-content/files/en-us/web/xml/xpath/guides/snippets/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/xml/xslt/guides/common_errors/index.md:8 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/xml/xslt/guides/pi_parameters/index.md:8 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/web/xml/xslt/reference/element/stylesheet/index.md:10 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/mdn-content/files/en-us/webassembly/guides/existing_c_to_wasm/index.md:66 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]` + `test-repos/mdn-content/files/en-us/glossary/denial_of_service/index.md:14 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/flex/index.md:14 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/function/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/https_rr/index.md:13 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/parameter/index.md:31 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/prefetch/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/session_hijacking/index.md:14 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/time_to_interactive/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h4]␊ + test-repos/mdn-content/files/en-us/glossary/truthy/index.md:30 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/xhtml/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/glossary/xlink/index.md:16 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/learn_web_development/howto/solve_html_problems/index.md:11 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/add-ons/contact_us/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/externally_connectable/index.md:53 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/add-ons/webextensions/manifest.json/host_permissions/index.md:39 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/1.5/what_s_new_in_1.5_alpha/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/dom_improvements/index.md:20 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/full_page_zoom/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/notable_bugs_fixed/index.md:26 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/templates/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/mozilla/firefox/releases/3/xul_improvements_in_firefox_3/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/accessibility/aria/how_to/file_aria-related_bugs/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/canvasrenderingcontext2d/save/index.md:16 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/expectedimprovement/index.md:16 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/delegatedinktrailpresenter/presentationarea/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/fetchevent/respondwith/index.md:30 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/htmlelement/dataset/index.md:40 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/htmlelement/editcontext/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/reportbody/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/bytesdiscardedonsend/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/consentrequestssent/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsdiscardedonsend/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetsreceived/index.md:15 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatepairstats/packetssent/index.md:15 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/candidatetype/index.md:13 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/foundation/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/priority/index.md:13 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcicecandidatestats/usernamefragment/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcrtpreceiver/transform/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/rtcrtpsender/transform/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/texttrack/mode/index.md:21 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/api/webrtc_api/build_a_phone_with_peerjs/index.md:15 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/css/css_backgrounds_and_borders/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/css/css_selectors/selector_structure/index.md:14 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/css/font-variant-caps/index.md:54 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/attributes/crossorigin/index.md:63 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/attributes/maxlength/index.md:18 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/attributes/required/index.md:26 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/elements/input/time/index.md:43 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/data-_star_/index.md:73 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/html/reference/global_attributes/itemscope/index.md:19 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/display_override/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/file_handlers/index.md:22 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/launch_handler/index.md:15 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/note_taking/index.md:15 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/protocol_handlers/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/serviceworker/index.md:16 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/manifest/reference/share_target/index.md:20 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/progressive_web_apps/tutorials/js13kgames/app_structure/index.md:17 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/svg/guides/namespaces_crash_course/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/svg/guides/scripting/index.md:13 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/svg/tutorials/svg_from_scratch/other_content_in_svg/index.md:12 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/webdriver/reference/capabilities/firefoxoptions/index.md:18 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h5]␊ + test-repos/mdn-content/files/en-us/web/xml/xpath/guides/snippets/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/xml/xslt/guides/common_errors/index.md:8 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/xml/xslt/guides/pi_parameters/index.md:8 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/web/xml/xslt/reference/element/stylesheet/index.md:10 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/mdn-content/files/en-us/webassembly/guides/existing_c_to_wasm/index.md:66 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]` diff --git a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap index cef24737..70e35e04 100644 Binary files a/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap and b/test/snapshots/markdownlint-test-repos-mdn-content.mjs.snap differ diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.md b/test/snapshots/markdownlint-test-repos-small.mjs.md index 0ab8f495..fb1ebb9b 100644 --- a/test/snapshots/markdownlint-test-repos-small.mjs.md +++ b/test/snapshots/markdownlint-test-repos-small.mjs.md @@ -8,305 +8,305 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/apache-airflow/clients/python/CHANGELOG.md:38 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v3.0.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:90 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.10.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:110 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.1"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:117 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:136 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.8.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:159 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.3"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:170 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.2"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:186 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:209 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.2"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:225 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.1"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:241 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:264 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.1"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:280 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:300 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.3.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:318 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.2.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:339 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.1.0"]␊ - test-repos/apache-airflow/clients/python/CHANGELOG.md:360 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.0.0"]␊ - test-repos/apache-airflow/clients/python/README.md:22 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Overview"]␊ - test-repos/apache-airflow/clients/python/README.md:135 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Trying the API"]␊ - test-repos/apache-airflow/clients/python/README.md:176 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Authentication"]␊ - test-repos/apache-airflow/clients/python/README.md:186 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Errors"]␊ - test-repos/apache-airflow/clients/python/README.md:350:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:350:43 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:351:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:351:60 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:352:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:352:128 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:353:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:353:171 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:354:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:354:194 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:355:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:355:186 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:356:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:356:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:357:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:357:136 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:358:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:358:125 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:359:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:359:121 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:360:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:360:159 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:361:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:361:96 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:362:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:362:182 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:363:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:363:174 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:364:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:364:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:365:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:365:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:366:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:366:121 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:367:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:367:153 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:368:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:368:125 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:369:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:369:117 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:370:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:370:137 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:371:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:371:145 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:372:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:372:98 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:373:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:373:150 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:374:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:374:131 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:375:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:375:169 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:376:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:376:151 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:377:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:377:139 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:378:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:378:126 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:379:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:379:147 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:380:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:380:127 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:381:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:381:132 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:382:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:382:102 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:383:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:383:90 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:384:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:384:122 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:385:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:385:99 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:386:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:386:84 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:387:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:387:98 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:388:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:388:92 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:389:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:389:143 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:390:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:390:123 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:391:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:391:142 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:392:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:392:141 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:393:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:393:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:394:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:394:119 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:395:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:395:158 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:396:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:396:191 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:397:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:397:137 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:398:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:398:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:399:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:399:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:400:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:400:113 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:401:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:401:157 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:402:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:402:143 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:403:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:403:132 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:404:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:404:129 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:405:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:405:117 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:406:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:406:179 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:407:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:407:150 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:408:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:408:135 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:409:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:409:84 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:410:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:410:85 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:411:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:411:89 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:412:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:412:108 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:413:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:413:102 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:414:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:414:95 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:415:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:415:111 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:416:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:416:99 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:417:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:417:90 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:418:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:418:107 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:419:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:419:91 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:420:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:420:114 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:421:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:421:111 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:422:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:422:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:423:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:423:183 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:424:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:424:171 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:425:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:425:216 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:426:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:426:240 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:427:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:427:276 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:428:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:428:218 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:429:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:429:183 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:430:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:430:235 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:431:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:431:273 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:432:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:432:207 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:433:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:433:243 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:434:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:434:176 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:435:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:435:200 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:436:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:436:191 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:437:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:437:229 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:438:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:438:223 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:439:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:439:261 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:440:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:440:182 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:441:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:441:119 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:442:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:442:138 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:443:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:443:126 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:444:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:444:114 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:445:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:445:134 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:446:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:446:115 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:447:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:447:104 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:448:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:448:180 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:449:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:449:176 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:450:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:450:181 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/clients/python/README.md:451:1 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ - test-repos/apache-airflow/clients/python/README.md:451:192 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ - test-repos/apache-airflow/dev/MANUALLY_BUILDING_IMAGES.md:76:32 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/apache-airflow/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md:114:32 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/apache-airflow/dev/PROJECT_GUIDELINES.md:42:3 MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊ - test-repos/apache-airflow/generated/README.md:23:43 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:30 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Scope"]␊ - test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:38 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Tenants"]␊ - test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:143 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Conventions"]␊ - test-repos/apache-airflow/providers/apache/beam/src/airflow/providers/apache/beam/README.md:61 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Provider classes summary"]␊ - test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:61 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Verifying other providers to u..."]␊ - test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:71 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "External usage, tracking API c..."]␊ - test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:81 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Possible future work"]␊ - test-repos/apache-airflow/providers/google/tests/system/google/README.md:77:4 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:29 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Status update"]␊ - test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:33 MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "List of Quarantined issues"]` + `test-repos/apache-airflow/clients/python/CHANGELOG.md:38 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v3.0.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:90 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.10.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:110 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.1"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:117 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.9.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:136 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.8.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:159 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.3"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:170 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.2"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:186 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.7.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:209 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.2"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:225 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.1"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:241 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.6.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:264 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.1"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:280 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.5.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:300 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.3.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:318 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.2.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:339 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.1.0"]␊ + test-repos/apache-airflow/clients/python/CHANGELOG.md:360 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "v2.0.0"]␊ + test-repos/apache-airflow/clients/python/README.md:22 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Overview"]␊ + test-repos/apache-airflow/clients/python/README.md:135 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Trying the API"]␊ + test-repos/apache-airflow/clients/python/README.md:176 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Authentication"]␊ + test-repos/apache-airflow/clients/python/README.md:186 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Errors"]␊ + test-repos/apache-airflow/clients/python/README.md:350:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:350:43 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:351:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:351:60 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:352:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:352:128 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:353:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:353:171 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:354:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:354:194 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:355:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:355:186 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:356:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:356:104 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:357:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:357:136 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:358:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:358:125 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:359:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:359:121 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:360:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:360:159 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:361:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:361:96 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:362:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:362:182 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:363:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:363:174 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:364:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:364:141 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:365:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:365:141 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:366:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:366:121 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:367:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:367:153 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:368:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:368:125 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:369:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:369:117 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:370:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:370:137 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:371:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:371:145 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:372:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:372:98 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:373:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:373:150 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:374:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:374:131 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:375:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:375:169 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:376:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:376:151 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:377:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:377:139 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:378:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:378:126 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:379:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:379:147 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:380:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:380:127 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:381:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:381:132 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:382:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:382:102 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:383:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:383:90 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:384:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:384:122 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:385:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:385:99 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:386:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:386:84 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:387:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:387:98 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:388:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:388:92 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:389:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:389:143 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:390:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:390:123 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:391:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:391:142 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:392:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:392:141 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:393:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:393:129 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:394:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:394:119 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:395:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:395:158 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:396:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:396:191 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:397:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:397:137 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:398:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:398:129 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:399:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:399:129 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:400:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:400:113 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:401:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:401:157 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:402:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:402:143 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:403:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:403:132 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:404:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:404:129 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:405:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:405:117 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:406:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:406:179 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:407:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:407:150 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:408:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:408:135 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:409:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:409:84 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:410:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:410:85 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:411:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:411:89 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:412:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:412:108 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:413:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:413:102 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:414:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:414:95 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:415:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:415:111 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:416:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:416:99 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:417:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:417:90 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:418:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:418:107 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:419:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:419:91 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:420:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:420:114 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:421:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:421:111 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:422:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:422:104 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:423:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:423:183 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:424:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:424:171 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:425:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:425:216 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:426:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:426:240 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:427:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:427:276 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:428:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:428:218 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:429:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:429:183 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:430:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:430:235 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:431:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:431:273 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:432:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:432:207 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:433:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:433:243 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:434:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:434:176 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:435:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:435:200 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:436:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:436:191 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:437:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:437:229 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:438:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:438:223 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:439:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:439:261 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:440:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:440:182 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:441:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:441:119 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:442:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:442:138 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:443:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:443:126 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:444:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:444:114 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:445:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:445:134 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:446:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:446:115 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:447:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:447:104 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:448:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:448:180 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:449:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:449:176 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:450:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:450:181 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/clients/python/README.md:451:1 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing leading pipe]␊ + test-repos/apache-airflow/clients/python/README.md:451:192 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: no_leading_or_trailing; Missing trailing pipe]␊ + test-repos/apache-airflow/dev/MANUALLY_BUILDING_IMAGES.md:76:32 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/apache-airflow/dev/MANUALLY_GENERATING_IMAGE_CACHE_AND_CONSTRAINTS.md:114:32 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/apache-airflow/dev/PROJECT_GUIDELINES.md:42:3 error MD059/descriptive-link-text Link text should be descriptive [Context: "[Link]"]␊ + test-repos/apache-airflow/generated/README.md:23:43 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:30 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Scope"]␊ + test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:38 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Tenants"]␊ + test-repos/apache-airflow/providers/amazon/tests/system/amazon/CONTRIBUTING.md:143 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Conventions"]␊ + test-repos/apache-airflow/providers/apache/beam/src/airflow/providers/apache/beam/README.md:61 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Provider classes summary"]␊ + test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:61 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Verifying other providers to u..."]␊ + test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:71 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "External usage, tracking API c..."]␊ + test-repos/apache-airflow/providers/common/sql/src/airflow/providers/common/sql/README_API.md:81 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Possible future work"]␊ + test-repos/apache-airflow/providers/google/tests/system/google/README.md:77:4 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:29 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "Status update"]␊ + test-repos/apache-airflow/scripts/in_container/quarantine_issue_header.md:33 error MD025/single-title/single-h1 Multiple top-level headings in the same document [Context: "List of Quarantined issues"]` ## https://github.com/electron/electron > Expected linting violations - `test-repos/electron-electron/docs/api/structures/notification-action.md:10:163 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/api/structures/notification-action.md:10:431 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:12 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:12 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:33 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:33 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/electron-electron/docs/breaking-changes.md:2337:47 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:12:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:13:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:14:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:15:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:16:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:17:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:18:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:19:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:20:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:21:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:22:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:23:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/electron-timelines.md:24:10 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:32:208 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:33:182 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:45 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:66 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:34:368 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:60 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:70 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/esm.md:35:540 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:30:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:30:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:31:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:31:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:32:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:32:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:33:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:33:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:34:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:34:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:35:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:35:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:36:27 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/examples.md:36:145 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/electron-electron/docs/tutorial/menus.md:203:32 MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "sharemenu"] [Context: "[share menu][ShareMenu]"]` + `test-repos/electron-electron/docs/api/structures/notification-action.md:10:163 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/api/structures/notification-action.md:10:431 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:12 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:12 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:33 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:33 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/electron-electron/docs/breaking-changes.md:2337:47 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:12:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:13:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:14:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:15:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:16:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:17:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:18:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:19:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:20:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:21:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:22:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:23:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/electron-timelines.md:24:10 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:32:208 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:33:182 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:45 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:66 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:34:368 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:60 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:70 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/esm.md:35:540 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:30:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:30:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:31:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:31:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:32:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:32:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:33:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:33:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:34:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:34:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:35:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:35:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:36:27 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/examples.md:36:145 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/electron-electron/docs/tutorial/menus.md:203:32 error MD052/reference-links-images Reference links and images should use a label that is defined [Missing link or image reference definition: "sharemenu"] [Context: "[share menu][ShareMenu]"]` ## https://github.com/eslint/eslint > Expected linting violations - `test-repos/eslint-eslint/docs/src/extend/custom-rule-tutorial.md:500:58 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/eslint-eslint/docs/src/extend/custom-rules.md:141:65 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/eslint-eslint/docs/src/extend/custom-rules.md:148:148 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/eslint-eslint/docs/src/integrate/integration-tutorial.md:278:2 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]` + `test-repos/eslint-eslint/docs/src/extend/custom-rule-tutorial.md:500:58 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/eslint-eslint/docs/src/extend/custom-rules.md:141:65 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/eslint-eslint/docs/src/extend/custom-rules.md:148:148 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/eslint-eslint/docs/src/integrate/integration-tutorial.md:278:2 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]` ## https://github.com/mkdocs/mkdocs @@ -318,526 +318,526 @@ Generated by [AVA](https://avajs.dev). > Expected linting violations - `test-repos/mochajs-mocha/.github/CODE_OF_CONDUCT.md:63:59 MD034/no-bare-urls Bare URL used [Context: "report@lists.openjsf.org"]␊ - test-repos/mochajs-mocha/.github/CONTRIBUTING.md:42:110 MD051/link-fragments Link fragments should be valid [Context: "[⚽️ About Project Goals](#⚽️-about-project-goals)"]␊ - test-repos/mochajs-mocha/docs/changelogs/CHANGELOG_V3_older.md:207:127 MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊ - test-repos/mochajs-mocha/docs/index.md:34:3 MD051/link-fragments Link fragments should be valid [Context: "[global variable leak detection](#-check-leaks)"]␊ - test-repos/mochajs-mocha/docs/index.md:35:3 MD051/link-fragments Link fragments should be valid [Context: "[optionally run tests that match a regexp](#-grep-regexp-g-regexp)"]␊ - test-repos/mochajs-mocha/docs/index.md:36:3 MD051/link-fragments Link fragments should be valid [Context: "[auto-exit to prevent "hanging" with an active loop](#-exit)"]␊ - test-repos/mochajs-mocha/docs/index.md:38:3 MD051/link-fragments Link fragments should be valid [Context: "[config file support](#-config-path)"]␊ - test-repos/mochajs-mocha/docs/index.md:39:3 MD051/link-fragments Link fragments should be valid [Context: "[node debugger support](#-inspect-inspect-brk-inspect)"]␊ - test-repos/mochajs-mocha/docs/index.md:41:3 MD051/link-fragments Link fragments should be valid [Context: "[source-map support](#-enable-source-maps)"]␊ - test-repos/mochajs-mocha/docs/index.md:47:3 MD051/link-fragments Link fragments should be valid [Context: "[arbitrary transpiler support (coffee-script etc)](#-compilers)"]␊ - test-repos/mochajs-mocha/docs/index.md:1262:32 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ - test-repos/mochajs-mocha/docs/index.md:1280:66 MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊ - test-repos/mochajs-mocha/docs/index.md:1301:80 MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊ - test-repos/mochajs-mocha/docs/index.md:1307:140 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ - test-repos/mochajs-mocha/docs/index.md:1332:8 MD051/link-fragments Link fragments should be valid [Context: "[\`--grep\`](#-grep-regexp-g-regexp)"]␊ - test-repos/mochajs-mocha/docs/index.md:1332:46 MD051/link-fragments Link fragments should be valid [Context: "[\`--fgrep\`](#-fgrep-string-f-string)"]␊ - test-repos/mochajs-mocha/docs/index.md:1343:3 MD051/link-fragments Link fragments should be valid [Context: "[\`--file\`](#-file-file)"]␊ - test-repos/mochajs-mocha/docs/index.md:1344:3 MD051/link-fragments Link fragments should be valid [Context: "[\`--sort\`](#-sort-s)"]␊ - test-repos/mochajs-mocha/docs/index.md:1350:253 MD051/link-fragments Link fragments should be valid [Context: "[globally](#-timeout-ms-t-ms)"]␊ - test-repos/mochajs-mocha/docs/index.md:1411:58 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ - test-repos/mochajs-mocha/docs/index.md:1418:115 MD051/link-fragments Link fragments should be valid [Context: "[\`--timeout\`](#-timeout-ms-t-ms)"]␊ - test-repos/mochajs-mocha/docs/index.md:1428:69 MD051/link-fragments Link fragments should be valid [Context: "[job count](#-jobs-count-j-count)"]␊ - test-repos/mochajs-mocha/docs/index.md:1442:54 MD051/link-fragments Link fragments should be valid [Context: "[\`--require\`](#-require-module-r-module)"]␊ - test-repos/mochajs-mocha/docs/index.md:1652:112 MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ - test-repos/mochajs-mocha/docs/index.md:2132:3 MD051/link-fragments Link fragments should be valid [Context: "[Watch mode](#-watch-w)"]␊ - test-repos/mochajs-mocha/docs/index.md:2431:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-notifications"] [Context: "[caniuse-notifications]: https..."]␊ - test-repos/mochajs-mocha/docs/index.md:2432:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-promises"] [Context: "[caniuse-promises]: https://ca..."]␊ - test-repos/mochajs-mocha/docs/index.md:2463:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mocha-website"] [Context: "[mocha-website]: https://mocha..."]␊ - test-repos/mochajs-mocha/docs/index.md:2230:124 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/mochajs-mocha/docs/index.md:2302:81 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/mochajs-mocha/PROJECT_CHARTER.md:51:153 MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊ - test-repos/mochajs-mocha/PROJECT_CHARTER.md:56:93 MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊ - test-repos/mochajs-mocha/README.md:39:46 MD045/no-alt-text Images should have alternate text (alt text)` + `test-repos/mochajs-mocha/.github/CODE_OF_CONDUCT.md:63:59 error MD034/no-bare-urls Bare URL used [Context: "report@lists.openjsf.org"]␊ + test-repos/mochajs-mocha/.github/CONTRIBUTING.md:42:110 error MD051/link-fragments Link fragments should be valid [Context: "[⚽️ About Project Goals](#⚽️-about-project-goals)"]␊ + test-repos/mochajs-mocha/docs/changelogs/CHANGELOG_V3_older.md:207:127 error MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊ + test-repos/mochajs-mocha/docs/index.md:34:3 error MD051/link-fragments Link fragments should be valid [Context: "[global variable leak detection](#-check-leaks)"]␊ + test-repos/mochajs-mocha/docs/index.md:35:3 error MD051/link-fragments Link fragments should be valid [Context: "[optionally run tests that match a regexp](#-grep-regexp-g-regexp)"]␊ + test-repos/mochajs-mocha/docs/index.md:36:3 error MD051/link-fragments Link fragments should be valid [Context: "[auto-exit to prevent "hanging" with an active loop](#-exit)"]␊ + test-repos/mochajs-mocha/docs/index.md:38:3 error MD051/link-fragments Link fragments should be valid [Context: "[config file support](#-config-path)"]␊ + test-repos/mochajs-mocha/docs/index.md:39:3 error MD051/link-fragments Link fragments should be valid [Context: "[node debugger support](#-inspect-inspect-brk-inspect)"]␊ + test-repos/mochajs-mocha/docs/index.md:41:3 error MD051/link-fragments Link fragments should be valid [Context: "[source-map support](#-enable-source-maps)"]␊ + test-repos/mochajs-mocha/docs/index.md:47:3 error MD051/link-fragments Link fragments should be valid [Context: "[arbitrary transpiler support (coffee-script etc)](#-compilers)"]␊ + test-repos/mochajs-mocha/docs/index.md:1262:32 error MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ + test-repos/mochajs-mocha/docs/index.md:1280:66 error MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊ + test-repos/mochajs-mocha/docs/index.md:1301:80 error MD051/link-fragments Link fragments should be valid [Context: "[\`--node-option\`](#-node-option-name-n-name)"]␊ + test-repos/mochajs-mocha/docs/index.md:1307:140 error MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ + test-repos/mochajs-mocha/docs/index.md:1332:8 error MD051/link-fragments Link fragments should be valid [Context: "[\`--grep\`](#-grep-regexp-g-regexp)"]␊ + test-repos/mochajs-mocha/docs/index.md:1332:46 error MD051/link-fragments Link fragments should be valid [Context: "[\`--fgrep\`](#-fgrep-string-f-string)"]␊ + test-repos/mochajs-mocha/docs/index.md:1343:3 error MD051/link-fragments Link fragments should be valid [Context: "[\`--file\`](#-file-file)"]␊ + test-repos/mochajs-mocha/docs/index.md:1344:3 error MD051/link-fragments Link fragments should be valid [Context: "[\`--sort\`](#-sort-s)"]␊ + test-repos/mochajs-mocha/docs/index.md:1350:253 error MD051/link-fragments Link fragments should be valid [Context: "[globally](#-timeout-ms-t-ms)"]␊ + test-repos/mochajs-mocha/docs/index.md:1411:58 error MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ + test-repos/mochajs-mocha/docs/index.md:1418:115 error MD051/link-fragments Link fragments should be valid [Context: "[\`--timeout\`](#-timeout-ms-t-ms)"]␊ + test-repos/mochajs-mocha/docs/index.md:1428:69 error MD051/link-fragments Link fragments should be valid [Context: "[job count](#-jobs-count-j-count)"]␊ + test-repos/mochajs-mocha/docs/index.md:1442:54 error MD051/link-fragments Link fragments should be valid [Context: "[\`--require\`](#-require-module-r-module)"]␊ + test-repos/mochajs-mocha/docs/index.md:1652:112 error MD051/link-fragments Link fragments should be valid [Context: "[\`--parallel\`](#-parallel-p)"]␊ + test-repos/mochajs-mocha/docs/index.md:2132:3 error MD051/link-fragments Link fragments should be valid [Context: "[Watch mode](#-watch-w)"]␊ + test-repos/mochajs-mocha/docs/index.md:2431:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-notifications"] [Context: "[caniuse-notifications]: https..."]␊ + test-repos/mochajs-mocha/docs/index.md:2432:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "caniuse-promises"] [Context: "[caniuse-promises]: https://ca..."]␊ + test-repos/mochajs-mocha/docs/index.md:2463:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mocha-website"] [Context: "[mocha-website]: https://mocha..."]␊ + test-repos/mochajs-mocha/docs/index.md:2230:124 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/mochajs-mocha/docs/index.md:2302:81 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/mochajs-mocha/PROJECT_CHARTER.md:51:153 error MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊ + test-repos/mochajs-mocha/PROJECT_CHARTER.md:56:93 error MD051/link-fragments Link fragments should be valid [Context: "[§2: Scope](#%c2%a72-scope)"]␊ + test-repos/mochajs-mocha/README.md:39:46 error MD045/no-alt-text Images should have alternate text (alt text)` ## https://github.com/pi-hole/docs > Expected linting violations - `test-repos/pi-hole-docs/docs/api/tls.md:28:66 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/api/tls.md:49:64 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/api/tls.md:69:74 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/api/tls.md:70:73 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:1 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:31 MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:31:15 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:32:14 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:33:12 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:34:15 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:35:18 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:36:17 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:37:13 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:38:21 MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ - test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:131:8 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:66:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:66:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:67:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:67:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:68:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:68:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:69:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:69:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:70:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:70:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:88:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:88:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:89:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:89:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:90:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:90:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:91:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:91:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:92:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:92:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:116:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:116:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:117:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:117:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:118:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:118:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:119:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:119:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:120:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:120:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:139:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:139:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:140:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:140:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:141:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:141:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:142:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:142:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:143:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:143:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:162:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:162:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:163:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:163:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:164:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:164:46 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:165:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:165:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:166:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:166:56 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:190:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:190:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:191:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:191:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:192:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:192:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:193:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:193:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:194:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:194:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:212:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:212:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:213:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:213:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:214:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:214:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:215:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:215:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:216:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:216:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:235:23 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:235:32 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:236:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:236:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:237:29 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:237:47 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:238:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:238:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:239:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/group_management/example.md:239:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/guides/misc/allowlist-denylist.md:14:96 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/coverage.md:7 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:4:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:11:25 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:34:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:36:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:42:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:42:4 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:43:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:44:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:46:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:61:1 MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:62:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:64:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:72:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:74:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:82:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:84:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:96:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:98:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:126:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:128:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:136:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:138:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:152:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:154:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:168:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:170:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:178:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:180:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:188:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:190:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:198:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:200:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:208:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:210:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:220:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:222:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:230:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:232:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:240:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/pihole-command.md:242:19 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:7 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:54:192 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:55:122 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:56:122 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:57:57 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:57:68 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:57:370 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/main/prerequisites.md:58:123 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:137:6 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:142:50 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:145:40 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:146:6 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/pi-hole-docs/docs/regex/tutorial.md:147:68 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` + `test-repos/pi-hole-docs/docs/api/tls.md:28:66 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md:49:64 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md:69:74 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/api/tls.md:70:73 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:1 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 error MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:16 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:12:31 error MD060/table-column-style Table column style [Table pipe has space to the left for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:31:15 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:32:14 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:33:12 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:34:15 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:35:18 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:36:17 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:37:13 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/docker/upgrading/v5-v6.md:38:21 error MD060/table-column-style Table column style [Table pipe has space to the right for style "tight"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:119:11 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/ftldns/cache_dump.md:131:8 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:66:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:66:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:67:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:67:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:68:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:68:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:69:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:69:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:70:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:70:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:88:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:88:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:89:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:89:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:90:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:90:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:91:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:91:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:92:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:92:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:116:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:116:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:117:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:117:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:118:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:118:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:119:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:119:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:120:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:120:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:139:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:139:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:140:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:140:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:141:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:141:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:142:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:142:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:143:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:143:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:162:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:162:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:163:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:163:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:164:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:164:46 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:165:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:165:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:166:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:166:56 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:190:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:190:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:191:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:191:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:192:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:192:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:193:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:193:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:194:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:194:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:212:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:212:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:213:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:213:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:214:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:214:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:215:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:215:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:216:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:216:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:235:23 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:235:32 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:236:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:236:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:237:29 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:237:47 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:238:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:238:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:239:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/group_management/example.md:239:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/guides/misc/allowlist-denylist.md:14:96 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/coverage.md:7 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:4:1 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:11:25 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:34:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:36:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:42:1 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:42:4 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:43:1 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:44:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:46:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:61:1 error MD060/table-column-style Table column style [Table pipe has extra space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:62:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:64:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:72:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:74:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:82:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:84:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:96:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:98:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:126:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:128:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:136:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:138:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:152:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:154:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:168:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:170:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:178:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:180:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:188:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:190:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:198:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:200:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:208:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:210:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:220:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:222:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:230:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:232:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:240:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/pihole-command.md:242:19 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:7 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:54:192 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:55:122 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:56:122 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:57:57 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:57:68 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:57:370 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/main/prerequisites.md:58:123 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:84:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:85:10 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:86:10 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:137:6 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:142:50 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:143:67 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:144:2 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:144:26 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:145:40 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:146:6 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/pi-hole-docs/docs/regex/tutorial.md:147:68 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` ## https://github.com/v8/v8.dev > Expected linting violations - `test-repos/v8-v8-dev/src/blog/adaptor-frame.md:75:80 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/adaptor-frame.md:77:143 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/adaptor-frame.md:89:183 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/adaptor-frame.md:232:288 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/explicit-compile-hints.md:22:67 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/extras/understanding-ecmascript-part-2-extra.md:13 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/v8-v8-dev/src/blog/fast-for-in.md:271 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Internal method | Hand..."]␊ - test-repos/v8-v8-dev/src/blog/fast-for-in.md:277 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[OwnPropertyKeys]]\` | \`own..."]␊ - test-repos/v8-v8-dev/src/blog/fast-for-in.md:351 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Position | Name ..."]␊ - test-repos/v8-v8-dev/src/blog/fast-for-in.md:369 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 17 | \`ForInFilter\` ..."]␊ - test-repos/v8-v8-dev/src/blog/fast-super.md:27 MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ - test-repos/v8-v8-dev/src/blog/high-performance-cpp-gc.md:29:413 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:53 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:118 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/jspi-ot.md:23:25 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/jspi-ot.md:38:91 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:183 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Kind ..."]␊ - test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:188 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| youtube.com | Average size ..."]␊ - test-repos/v8-v8-dev/src/blog/maglev.md:143 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Energy Consump..."]␊ - test-repos/v8-v8-dev/src/blog/maglev.md:146 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Speedometer | -10% ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:84:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:85:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:86:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:87:67 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:133:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:134:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:135:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:136:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:137:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:138:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:156:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:157:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:158:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:159:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:160:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:161:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:162:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:163:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:164:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:165:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:166:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:167:64 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:187:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:188:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:189:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:190:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:191:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:192:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:193:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:194:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:195:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:196:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:197:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:198:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:199:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:200:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:201:66 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:82 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:88 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:131 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:139 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:185 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ - test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:202 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ - test-repos/v8-v8-dev/src/blog/optimizing-v8-memory.md:35:290 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:192:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:193:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:194:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:195:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:196:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:197:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:76 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:215:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:216:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:217:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:218:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:219:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:220:74 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:330:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:331:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:332:79 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:81 MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:74 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ - test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:79 MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ - test-repos/v8-v8-dev/src/blog/react-cliff.md:81 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| representation ..."]␊ - test-repos/v8-v8-dev/src/blog/react-cliff.md:87 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 64-bit IEEE-754 floating-poi..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:41 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 3. Return \`? HasOwnProperty(..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:55 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 5. Return \`true\`."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:91 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 1. Return \`! OrdinaryGetOwnP..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:177 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 10. Return \`NormalCompletion..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:191 MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 7. Return \`NormalCompletion(..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:113 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Name | Description ..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:117 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[Target]]\` | Used for dire..."]␊ - test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:102:52 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/v8-nodejs.md:29:153 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:46 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| || Des..."]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:53 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:47:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:48:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:49:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:50:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:51:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:52:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-80.md:53:15 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/blog/v8-release-86.md:16:371 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:61 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:206 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:413 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/docs/become-committer.md:34:141 MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/become-committer.md:44:326 MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/blink-layout-tests.md:11:78 MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊ - test-repos/v8-v8-dev/src/docs/contribute.md:23:19 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/docs/cross-compile-arm.md:21:93 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:41:227 MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊ - test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:78:50 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:80:27 MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊ - test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:126:2 MD059/descriptive-link-text Link text should be descriptive [Context: "[Here]"]␊ - test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:79 MD034/no-bare-urls Bare URL used [Context: "syg@chromium.org"]␊ - test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:100 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:40 MD034/no-bare-urls Bare URL used [Context: "gdeepti@chromium.org"]␊ - test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:65 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/hidden-classes.md:133:120 MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊ - test-repos/v8-v8-dev/src/docs/official-support.md:19:15 MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ - test-repos/v8-v8-dev/src/docs/respectful-code.md:36 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Term | Suggested altern..."]␊ - test-repos/v8-v8-dev/src/docs/respectful-code.md:45 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| redline | priority line, l..."]␊ - test-repos/v8-v8-dev/src/docs/torque.md:527:341 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/docs/trace.md:5:287 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/v8-v8-dev/src/feature-support.md:11:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/feature-support.md:19:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/feature-support.md:27:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/_intl-locale.md:36:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/array-flat-flatmap.md:77:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/at-method.md:39:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/atomics.md:203:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/atomics.md:211:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/bigint.md:267:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/class-fields.md:194:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/class-fields.md:202:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/class-fields.md:210:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/class-static-initializer-blocks.md:104:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/dynamic-import.md:143:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/error-cause.md:70:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/explicit-resource-management.md:214:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/finding-in-arrays.md:59:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/function-tostring.md:33:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/globalthis.md:43:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/import-assertions.md:84:29 MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊ - test-repos/v8-v8-dev/src/features/import-assertions.md:88:29 MD034/no-bare-urls Bare URL used [Context: "https://github.com/babel/babel..."]␊ - test-repos/v8-v8-dev/src/features/import-attributes.md:59:30 MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊ - test-repos/v8-v8-dev/src/features/import-attributes.md:61:31 MD034/no-bare-urls Bare URL used [Context: "https://developer.apple.com/do..."]␊ - test-repos/v8-v8-dev/src/features/import-attributes.md:62:32 MD034/no-bare-urls Bare URL used [Context: "https://nodejs.org/docs/latest..."]␊ - test-repos/v8-v8-dev/src/features/import-attributes.md:63:29 MD034/no-bare-urls Bare URL used [Context: "https://babeljs.io/blog/2023/0..."]␊ - test-repos/v8-v8-dev/src/features/intl-displaynames.md:110:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-listformat.md:91:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-listformat.md:74 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Type | Opti..."]␊ - test-repos/v8-v8-dev/src/features/intl-listformat.md:80 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| unit-narrow | \`{ t..."]␊ - test-repos/v8-v8-dev/src/features/intl-numberformat.md:16:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-numberformat.md:58:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-numberformat.md:104:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-numberformat.md:170:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-numberformat.md:234:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-pluralrules.md:126:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/intl-relativetimeformat.md:175:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/iterator-helpers.md:188:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/logical-assignment.md:92:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/modules.md:16:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/nullish-coalescing.md:155:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/numeric-separators.md:58:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/object-fromentries.md:20:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/object-fromentries.md:114:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/object-has-own.md:37:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/object-rest-spread.md:32:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/object-rest-spread.md:91:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/optional-catch-binding.md:37:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/optional-chaining.md:136:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/private-brand-checks.md:122:29 MD034/no-bare-urls Bare URL used [Context: "https://bugs.chromium.org/p/v8..."]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:35:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:66:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:95:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:120:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:23 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:28 MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:25:172 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:26:162 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:27:162 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/features/promise-combinators.md:28:172 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/v8-v8-dev/src/features/promise-finally.md:82:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/regexp-match-indices.md:134:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/regexp-v-flag.md:254:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/simd.md:217:197 MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊ - test-repos/v8-v8-dev/src/features/stable-sort.md:76:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/stable-sort.md:84:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/string-matchall.md:92:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/string-replaceall.md:122:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/string-trimming.md:42:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/subsume-json.md:176:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/symbol-description.md:53:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/top-level-await.md:113:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/weak-references.md:232:1 MD033/no-inline-html Inline HTML [Element: feature-support]␊ - test-repos/v8-v8-dev/src/features/well-formed-json-stringify.md:32:1 MD033/no-inline-html Inline HTML [Element: feature-support]` + `test-repos/v8-v8-dev/src/blog/adaptor-frame.md:75:80 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/adaptor-frame.md:77:143 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/adaptor-frame.md:89:183 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/adaptor-frame.md:232:288 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/explicit-compile-hints.md:22:67 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/extras/understanding-ecmascript-part-2-extra.md:13 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md:271 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Internal method | Hand..."]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md:277 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[OwnPropertyKeys]]\` | \`own..."]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md:351 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Position | Name ..."]␊ + test-repos/v8-v8-dev/src/blog/fast-for-in.md:369 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 17 | \`ForInFilter\` ..."]␊ + test-repos/v8-v8-dev/src/blog/fast-super.md:27 error MD001/heading-increment Heading levels should only increment by one level at a time [Expected: h2; Actual: h3]␊ + test-repos/v8-v8-dev/src/blog/high-performance-cpp-gc.md:29:413 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:53 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/jspi-ot.md:13:118 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/jspi-ot.md:23:25 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/jspi-ot.md:38:91 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:183 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Kind ..."]␊ + test-repos/v8-v8-dev/src/blog/lazy-unlinking.md:188 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| youtube.com | Average size ..."]␊ + test-repos/v8-v8-dev/src/blog/maglev.md:143 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Benchmark | Energy Consump..."]␊ + test-repos/v8-v8-dev/src/blog/maglev.md:146 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Speedometer | -10% ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:84:67 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:85:67 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:86:67 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:87:67 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:133:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:134:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:135:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:136:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:137:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:138:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:156:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:157:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:158:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:159:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:160:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:161:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:162:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:163:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:164:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:165:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:166:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:167:64 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:187:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:188:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:189:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:190:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:191:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:192:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:193:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:194:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:195:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:196:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:197:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:198:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:199:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:200:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:201:66 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:82 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:88 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:131 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:139 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:185 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| C++ ..."]␊ + test-repos/v8-v8-dev/src/blog/oilpan-pointer-compression.md:202 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`\`\` ..."]␊ + test-repos/v8-v8-dev/src/blog/optimizing-v8-memory.md:35:290 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:192:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:193:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:194:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:195:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:196:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:197:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:76 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:215:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:216:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:217:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:218:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:219:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:220:74 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:330:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:331:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:332:79 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:81 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:81 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:81 error MD055/table-pipe-style Table pipe style [Expected: leading_and_trailing; Actual: leading_only; Missing trailing pipe]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:198:74 error MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:333:79 error MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:334:79 error MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ + test-repos/v8-v8-dev/src/blog/pointer-compression.md:335:79 error MD056/table-column-count Table column count [Expected: 3; Actual: 4; Too many cells, extra data will be missing]␊ + test-repos/v8-v8-dev/src/blog/react-cliff.md:81 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| representation ..."]␊ + test-repos/v8-v8-dev/src/blog/react-cliff.md:87 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| 64-bit IEEE-754 floating-poi..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:41 error MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 3. Return \`? HasOwnProperty(..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:55 error MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 5. Return \`true\`."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:91 error MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 1. Return \`! OrdinaryGetOwnP..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:177 error MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 10. Return \`NormalCompletion..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:191 error MD032/blanks-around-lists Lists should be surrounded by blank lines [Context: "> 7. Return \`NormalCompletion(..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:113 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Name | Description ..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:117 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| \`[[Target]]\` | Used for dire..."]␊ + test-repos/v8-v8-dev/src/blog/understanding-ecmascript-part-1.md:102:52 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/v8-nodejs.md:29:153 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:46 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| || Des..."]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:53 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| ^^ | GC | -7%..."]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:47:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:48:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:49:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:50:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:51:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:52:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-80.md:53:15 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/blog/v8-release-86.md:16:371 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:61 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:206 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/blog/wasm-decompile.md:153:413 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/docs/become-committer.md:34:141 error MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/become-committer.md:44:326 error MD034/no-bare-urls Bare URL used [Context: "v8-committers@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/blink-layout-tests.md:11:78 error MD059/descriptive-link-text Link text should be descriptive [Context: "[more]"]␊ + test-repos/v8-v8-dev/src/docs/contribute.md:23:19 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/docs/cross-compile-arm.md:21:93 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:41:227 error MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊ + test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:78:50 error MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:80:27 error MD034/no-bare-urls Bare URL used [Context: "v8-eng-review-owners@googlegro..."]␊ + test-repos/v8-v8-dev/src/docs/design-review-guidelines.md:126:2 error MD059/descriptive-link-text Link text should be descriptive [Context: "[Here]"]␊ + test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:79 error MD034/no-bare-urls Bare URL used [Context: "syg@chromium.org"]␊ + test-repos/v8-v8-dev/src/docs/feature-launch-process.md:7:100 error MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:40 error MD034/no-bare-urls Bare URL used [Context: "gdeepti@chromium.org"]␊ + test-repos/v8-v8-dev/src/docs/feature-launch-process.md:9:65 error MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/hidden-classes.md:133:120 error MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊ + test-repos/v8-v8-dev/src/docs/official-support.md:19:15 error MD034/no-bare-urls Bare URL used [Context: "v8-dev@googlegroups.com"]␊ + test-repos/v8-v8-dev/src/docs/respectful-code.md:36 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Term | Suggested altern..."]␊ + test-repos/v8-v8-dev/src/docs/respectful-code.md:45 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| redline | priority line, l..."]␊ + test-repos/v8-v8-dev/src/docs/torque.md:527:341 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/docs/trace.md:5:287 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/v8-v8-dev/src/feature-support.md:11:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/feature-support.md:19:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/feature-support.md:27:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/_intl-locale.md:36:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/array-flat-flatmap.md:77:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/at-method.md:39:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/atomics.md:203:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/atomics.md:211:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/bigint.md:267:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/class-fields.md:194:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/class-fields.md:202:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/class-fields.md:210:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/class-static-initializer-blocks.md:104:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/dynamic-import.md:143:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/error-cause.md:70:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/explicit-resource-management.md:214:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/finding-in-arrays.md:59:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/function-tostring.md:33:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/globalthis.md:43:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/import-assertions.md:84:29 error MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊ + test-repos/v8-v8-dev/src/features/import-assertions.md:88:29 error MD034/no-bare-urls Bare URL used [Context: "https://github.com/babel/babel..."]␊ + test-repos/v8-v8-dev/src/features/import-attributes.md:59:30 error MD034/no-bare-urls Bare URL used [Context: "https://chromestatus.com/featu..."]␊ + test-repos/v8-v8-dev/src/features/import-attributes.md:61:31 error MD034/no-bare-urls Bare URL used [Context: "https://developer.apple.com/do..."]␊ + test-repos/v8-v8-dev/src/features/import-attributes.md:62:32 error MD034/no-bare-urls Bare URL used [Context: "https://nodejs.org/docs/latest..."]␊ + test-repos/v8-v8-dev/src/features/import-attributes.md:63:29 error MD034/no-bare-urls Bare URL used [Context: "https://babeljs.io/blog/2023/0..."]␊ + test-repos/v8-v8-dev/src/features/intl-displaynames.md:110:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-listformat.md:91:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-listformat.md:74 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| Type | Opti..."]␊ + test-repos/v8-v8-dev/src/features/intl-listformat.md:80 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| unit-narrow | \`{ t..."]␊ + test-repos/v8-v8-dev/src/features/intl-numberformat.md:16:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-numberformat.md:58:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-numberformat.md:104:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-numberformat.md:170:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-numberformat.md:234:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-pluralrules.md:126:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/intl-relativetimeformat.md:175:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/iterator-helpers.md:188:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/logical-assignment.md:92:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/modules.md:16:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/nullish-coalescing.md:155:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/numeric-separators.md:58:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/object-fromentries.md:20:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/object-fromentries.md:114:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/object-has-own.md:37:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/object-rest-spread.md:32:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/object-rest-spread.md:91:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/optional-catch-binding.md:37:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/optional-chaining.md:136:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/private-brand-checks.md:122:29 error MD034/no-bare-urls Bare URL used [Context: "https://bugs.chromium.org/p/v8..."]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:35:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:66:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:95:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:120:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:23 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| name ..."]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:28 error MD058/blanks-around-tables Tables should be surrounded by blank lines [Context: "| [\`Promise.any\`](#promise.any..."]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:25:172 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:26:162 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:27:162 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-combinators.md:28:172 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/v8-v8-dev/src/features/promise-finally.md:82:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/regexp-match-indices.md:134:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/regexp-v-flag.md:254:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/simd.md:217:197 error MD059/descriptive-link-text Link text should be descriptive [Context: "[link]"]␊ + test-repos/v8-v8-dev/src/features/stable-sort.md:76:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/stable-sort.md:84:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/string-matchall.md:92:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/string-replaceall.md:122:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/string-trimming.md:42:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/subsume-json.md:176:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/symbol-description.md:53:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/top-level-await.md:113:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/weak-references.md:232:1 error MD033/no-inline-html Inline HTML [Element: feature-support]␊ + test-repos/v8-v8-dev/src/features/well-formed-json-stringify.md:32:1 error MD033/no-inline-html Inline HTML [Element: feature-support]` ## https://github.com/webhintio/hint > Expected linting violations - `test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:198:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "icon scaling"] [Context: "[icon scaling]: https://realfa..."]␊ - test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:202:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "web app manifest spec"] [Context: "[web app manifest spec]: https..."]␊ - test-repos/webhintio-hint/packages/hint-axe/README.md:170:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "axe rules"] [Context: "[axe rules]: https://github.co..."]␊ - test-repos/webhintio-hint/packages/hint-compat-api/docs/html.md:153:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "global-attr"] [Context: "[global-attr]: https://develop..."]␊ - test-repos/webhintio-hint/packages/hint-compat-api/README.md:48:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊ - test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/composite.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ - test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/layout.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ - test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/paint.md:73:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ - test-repos/webhintio-hint/packages/hint-detect-css-reflows/README.md:96:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ - test-repos/webhintio-hint/packages/hint-doctype/README.md:130:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊ - test-repos/webhintio-hint/packages/hint-highest-available-document-mode/README.md:420:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ - test-repos/webhintio-hint/packages/hint-http-compression/README.md:1087:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "gzip is not enough"] [Context: "[gzip is not enough]: https://..."]␊ - test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:268:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mdn viewport meta tag"] [Context: "[mdn viewport meta tag]: https..."]␊ - test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:271:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ppk initial-scale"] [Context: "[ppk initial-scale]: https://w..."]␊ - test-repos/webhintio-hint/packages/hint-minified-js/README.md:102:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm documentation"] [Context: "[NPM documentation]:"]␊ - test-repos/webhintio-hint/packages/hint-no-p3p/README.md:157:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "support"] [Context: "[support]: https://en.wikipedi..."]␊ - test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md:110:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊ - test-repos/webhintio-hint/packages/hint-performance-budget/README.md:198:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊ - test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md:278:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:41 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:50 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:25 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:35 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:48 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:25 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:35 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:39 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:40 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:49 MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ - test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md:181:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊ - test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md:10:370 MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊ - test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:218:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "openjs foundation"] [Context: "[OpenJS Foundation]: https://o..."]␊ - test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:219:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint org"] [Context: "[webhint org]: https://github...."]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/architecture.md:78:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "typescript"] [Context: "[typescript]: https://www.type..."]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:120:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm"] [Context: "[npm]: https://www.npmjs.com/g..."]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:94:11 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:95:11 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:100:71 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:102:54 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:104:13 MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:150:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "custom hint"] [Context: "[custom hint]: ../guides/creat..."]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:154:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npx issue"] [Context: "[npx issue]: https://github.co..."]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:58:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "jenkins"] [Context: "[jenkins]: https://jenkins.io"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:59:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "local-server"] [Context: "[local-server]: #test-a-local-..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:62:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint github"] [Context: "[webhint github]: https://gith..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:63:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint repo"] [Context: "[webhint repo]: https://github..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:64:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint.io"] [Context: "[webhint.io]: https://webhint...."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:65:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhintio repo"] [Context: "[webhintio repo]: https://gith..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:4:35 MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:405:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:408:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:409:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:410:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:20 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:43 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:178:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "nodejsdownloadcurrent"] [Context: "[NodejsDownloadCurrent]: https..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:1 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:7 MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:137:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "githubwebhintiohint308"] [Context: "[GithubWebhintioHint308]: http..."]␊ - test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:141:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npmjspackageiltorb"] [Context: "[NpmjsPackageIltorb]: https://..."]␊ - test-repos/webhintio-hint/packages/parser-html/README.md:51:1 MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:66:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:69:35 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:70:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:72:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:76:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:16 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ - test-repos/webhintio-hint/packages/utils-compat-data/README.md:78:31 MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` + `test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:198:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "icon scaling"] [Context: "[icon scaling]: https://realfa..."]␊ + test-repos/webhintio-hint/packages/hint-apple-touch-icons/README.md:202:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "web app manifest spec"] [Context: "[web app manifest spec]: https..."]␊ + test-repos/webhintio-hint/packages/hint-axe/README.md:170:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "axe rules"] [Context: "[axe rules]: https://github.co..."]␊ + test-repos/webhintio-hint/packages/hint-compat-api/docs/html.md:153:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "global-attr"] [Context: "[global-attr]: https://develop..."]␊ + test-repos/webhintio-hint/packages/hint-compat-api/README.md:48:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊ + test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/composite.md:73:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ + test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/layout.md:73:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ + test-repos/webhintio-hint/packages/hint-detect-css-reflows/docs/paint.md:73:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ + test-repos/webhintio-hint/packages/hint-detect-css-reflows/README.md:96:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "understanding-critical-path"] [Context: "[understanding-critical-path]:..."]␊ + test-repos/webhintio-hint/packages/hint-doctype/README.md:130:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm docs"] [Context: "[npm docs]: https://docs.npmjs..."]␊ + test-repos/webhintio-hint/packages/hint-highest-available-document-mode/README.md:420:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ + test-repos/webhintio-hint/packages/hint-http-compression/README.md:1087:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "gzip is not enough"] [Context: "[gzip is not enough]: https://..."]␊ + test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:268:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mdn viewport meta tag"] [Context: "[mdn viewport meta tag]: https..."]␊ + test-repos/webhintio-hint/packages/hint-meta-viewport/README.md:271:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ppk initial-scale"] [Context: "[ppk initial-scale]: https://w..."]␊ + test-repos/webhintio-hint/packages/hint-minified-js/README.md:102:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm documentation"] [Context: "[NPM documentation]:"]␊ + test-repos/webhintio-hint/packages/hint-no-p3p/README.md:157:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "support"] [Context: "[support]: https://en.wikipedi..."]␊ + test-repos/webhintio-hint/packages/hint-no-protocol-relative-urls/README.md:110:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "ie issue"] [Context: "[ie issue]: https://www.steves..."]␊ + test-repos/webhintio-hint/packages/hint-performance-budget/README.md:198:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "tcp handshake"] [Context: "[tcp handshake]: https://hpbn...."]␊ + test-repos/webhintio-hint/packages/hint-strict-transport-security/README.md:278:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "mod_mime"] [Context: "[mod_mime]: https://httpd.apac..."]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:41 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:21:50 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:25 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:35 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:22:48 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:25 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:35 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:39 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:23:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:24:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:25:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:26:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:40 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-typescript-config/docs/target.md:27:49 error MD060/table-column-style Table column style [Table pipe does not align with heading for style "aligned"]␊ + test-repos/webhintio-hint/packages/hint-x-content-type-options/README.md:181:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "fetch spec issue"] [Context: "[fetch spec issue]: https://gi..."]␊ + test-repos/webhintio-hint/packages/hint/docs/about/CONTRIBUTORS.md:10:370 error MD056/table-column-count Table column count [Expected: 3; Actual: 2; Too few cells, row will be missing data]␊ + test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:218:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "openjs foundation"] [Context: "[OpenJS Foundation]: https://o..."]␊ + test-repos/webhintio-hint/packages/hint/docs/about/GOVERNANCE.md:219:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint org"] [Context: "[webhint org]: https://github...."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/architecture.md:78:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "typescript"] [Context: "[typescript]: https://www.type..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:120:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npm"] [Context: "[npm]: https://www.npmjs.com/g..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:94:11 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:95:11 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:100:71 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:102:54 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/getting-started/development-environment.md:104:13 error MD060/table-column-style Table column style [Table pipe is missing space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:150:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "custom hint"] [Context: "[custom hint]: ../guides/creat..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/how-to/hint.md:154:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npx issue"] [Context: "[npx issue]: https://github.co..."]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/contributor-guide/index.md:8:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:82:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/concepts/hints.md:113:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/configuring-webhint/summary.md:21:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:58:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "jenkins"] [Context: "[jenkins]: https://jenkins.io"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:59:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "local-server"] [Context: "[local-server]: #test-a-local-..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:62:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint github"] [Context: "[webhint github]: https://gith..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:63:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint repo"] [Context: "[webhint repo]: https://github..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:64:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhint.io"] [Context: "[webhint.io]: https://webhint...."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/local-server.md:65:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "webhintio repo"] [Context: "[webhintio repo]: https://gith..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:4:35 error MD059/descriptive-link-text Link text should be descriptive [Context: "[here]"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:405:43 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:406:43 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:407:43 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:408:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:409:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:410:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:20 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/development-flow-integration/travis-and-azure.md:411:43 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:178:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "nodejsdownloadcurrent"] [Context: "[NodejsDownloadCurrent]: https..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:1 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/index.md:49:7 error MD060/table-column-style Table column style [Table pipe is missing space to the right for style "compact"]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:137:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "githubwebhintiohint308"] [Context: "[GithubWebhintioHint308]: http..."]␊ + test-repos/webhintio-hint/packages/hint/docs/user-guide/troubleshoot/summary.md:141:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "npmjspackageiltorb"] [Context: "[NpmjsPackageIltorb]: https://..."]␊ + test-repos/webhintio-hint/packages/parser-html/README.md:51:1 error MD053/link-image-reference-definitions Link and image reference definitions should be needed [Unused link or image reference definition: "events"] [Context: "[events]: https://webhint.io/d..."]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:65:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:66:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:67:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:68:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:69:35 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:70:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:71:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:72:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:73:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:74:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:75:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:76:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:16 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:77:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]␊ + test-repos/webhintio-hint/packages/utils-compat-data/README.md:78:31 error MD060/table-column-style Table column style [Table pipe has extra space to the left for style "compact"]` ## https://github.com/webpack/webpack.js.org diff --git a/test/snapshots/markdownlint-test-repos-small.mjs.snap b/test/snapshots/markdownlint-test-repos-small.mjs.snap index 1ab123e5..6f9a2e88 100644 Binary files a/test/snapshots/markdownlint-test-repos-small.mjs.snap and b/test/snapshots/markdownlint-test-repos-small.mjs.snap differ diff --git a/test/snapshots/markdownlint-test-scenarios.mjs.md b/test/snapshots/markdownlint-test-scenarios.mjs.md index 6644e949..a6c15f54 100644 --- a/test/snapshots/markdownlint-test-scenarios.mjs.md +++ b/test/snapshots/markdownlint-test-scenarios.mjs.md @@ -29,6 +29,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -49,6 +50,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -69,6 +71,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: ` text {MD010}␊ @@ -103,6 +106,7 @@ Generated by [AVA](https://avajs.dev). 'MD001', 'heading-increment', ], + severity: 'error', }, { errorContext: null, @@ -116,6 +120,7 @@ Generated by [AVA](https://avajs.dev). 'MD003', 'heading-style', ], + severity: 'error', }, { errorContext: null, @@ -136,6 +141,7 @@ Generated by [AVA](https://avajs.dev). 'MD004', 'ul-style', ], + severity: 'error', }, { errorContext: null, @@ -152,6 +158,7 @@ Generated by [AVA](https://avajs.dev). 'MD005', 'list-indent', ], + severity: 'error', }, { errorContext: null, @@ -172,6 +179,7 @@ Generated by [AVA](https://avajs.dev). 'MD005', 'list-indent', ], + severity: 'error', }, { errorContext: null, @@ -192,6 +200,7 @@ Generated by [AVA](https://avajs.dev). 'MD005', 'list-indent', ], + severity: 'error', }, { errorContext: null, @@ -212,6 +221,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -232,6 +242,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -252,6 +263,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -271,6 +283,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, { errorContext: null, @@ -291,6 +304,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: `## One␊ @@ -355,6 +369,7 @@ Generated by [AVA](https://avajs.dev). 'MD011', 'no-reversed-links', ], + severity: 'error', }, { errorContext: null, @@ -375,6 +390,7 @@ Generated by [AVA](https://avajs.dev). 'MD011', 'no-reversed-links', ], + severity: 'error', }, { errorContext: null, @@ -390,6 +406,7 @@ Generated by [AVA](https://avajs.dev). 'MD012', 'no-multiple-blanks', ], + severity: 'error', }, { errorContext: null, @@ -406,6 +423,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: null, @@ -422,6 +440,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: '$ command with no output {MD01...', @@ -441,6 +460,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '##No space A {MD018}', @@ -460,6 +480,7 @@ Generated by [AVA](https://avajs.dev). 'MD018', 'no-missing-space-atx', ], + severity: 'error', }, { errorContext: '## Multiple spaces B {MD019}', @@ -479,6 +500,7 @@ Generated by [AVA](https://avajs.dev). 'MD019', 'no-multiple-space-atx', ], + severity: 'error', }, { errorContext: '##No space C {MD020} ##', @@ -499,6 +521,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## No space D {MD020}##', @@ -519,6 +542,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Multiple spaces E {MD021} ...', @@ -538,6 +562,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '... Multiple spaces F {MD021} ##', @@ -557,6 +582,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, ], fixed: `# Top level heading␊ @@ -617,6 +643,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: ' # Heading', @@ -636,6 +663,7 @@ Generated by [AVA](https://avajs.dev). 'MD023', 'heading-start-left', ], + severity: 'error', }, { errorContext: 'Heading', @@ -649,6 +677,7 @@ Generated by [AVA](https://avajs.dev). 'MD024', 'no-duplicate-heading', ], + severity: 'error', }, { errorContext: 'Heading', @@ -663,6 +692,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, { errorContext: null, @@ -682,6 +712,7 @@ Generated by [AVA](https://avajs.dev). 'MD026', 'no-trailing-punctuation', ], + severity: 'error', }, { errorContext: '> Multiple spaces {MD027}', @@ -701,6 +732,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > Multiple spaces, multiple...', @@ -720,6 +752,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > > Multiple spaces, multip...', @@ -739,6 +772,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > > Multiple spaces, multip...', @@ -758,6 +792,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -771,6 +806,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -791,6 +827,7 @@ Generated by [AVA](https://avajs.dev). 'MD029', 'ol-prefix', ], + severity: 'error', }, { errorContext: null, @@ -811,6 +848,7 @@ Generated by [AVA](https://avajs.dev). 'MD030', 'list-marker-space', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -863,6 +901,7 @@ Generated by [AVA](https://avajs.dev). 'MD030', 'list-marker-space', ], + severity: 'error', }, { errorContext: null, @@ -883,6 +922,7 @@ Generated by [AVA](https://avajs.dev). 'MD030', 'list-marker-space', ], + severity: 'error', }, { errorContext: '-', @@ -900,6 +940,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: '1.', @@ -917,6 +958,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, ], fixed: `#␊ @@ -967,6 +1009,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '* List {MD032}', @@ -983,6 +1026,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: '* List {MD032}', @@ -1000,6 +1044,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: null, @@ -1016,6 +1061,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -1036,6 +1082,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: null, @@ -1049,6 +1096,7 @@ Generated by [AVA](https://avajs.dev). 'MD035', 'hr-style', ], + severity: 'error', }, { errorContext: 'Emphasis {MD036}', @@ -1062,6 +1110,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: '* i', @@ -1081,6 +1130,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: 'e *', @@ -1100,6 +1150,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '* s', @@ -1119,6 +1170,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: 'e *', @@ -1138,6 +1190,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: 'e **', @@ -1157,6 +1210,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '_ s', @@ -1176,6 +1230,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '__ s', @@ -1195,6 +1250,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: 'e __', @@ -1214,6 +1270,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '* i', @@ -1233,6 +1290,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: 'e *', @@ -1252,6 +1310,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '` inside`', @@ -1271,6 +1330,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '`` inside``', @@ -1290,6 +1350,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '` code`', @@ -1309,6 +1370,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '` elements`', @@ -1328,6 +1390,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '`` code``', @@ -1347,6 +1410,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '`` ` embedded backtick``', @@ -1366,6 +1430,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '``embedded backtick` ``', @@ -1385,6 +1450,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '` code {MD038} span`', @@ -1404,6 +1470,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '`code span `', @@ -1423,6 +1490,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '...``code span code span code ```', @@ -1442,6 +1510,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '```` code {MD038} span code sp...', @@ -1461,6 +1530,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '[ inside ]', @@ -1480,6 +1550,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ inside ]', @@ -1499,6 +1570,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ space]', @@ -1518,6 +1590,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[space ]', @@ -1537,6 +1610,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ space ]', @@ -1556,6 +1630,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ space ]', @@ -1575,6 +1650,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '```', @@ -1588,6 +1664,7 @@ Generated by [AVA](https://avajs.dev). 'MD040', 'fenced-code-language', ], + severity: 'error', }, ], fixed: `\`\`\`js␊ @@ -1685,6 +1762,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, { errorContext: '[empty]()', @@ -1701,6 +1779,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[empty](#)', @@ -1717,6 +1796,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[empty](<>)', @@ -1733,6 +1813,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[empty one]()', @@ -1749,6 +1830,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '# Heading', @@ -1762,6 +1844,7 @@ Generated by [AVA](https://avajs.dev). 'MD043', 'required-headings', ], + severity: 'error', }, { errorContext: null, @@ -1782,6 +1865,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -1802,6 +1886,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -1822,6 +1907,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -1838,6 +1924,7 @@ Generated by [AVA](https://avajs.dev). 'MD045', 'no-alt-text', ], + severity: 'error', }, { errorContext: null, @@ -1851,6 +1938,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -1871,6 +1959,7 @@ Generated by [AVA](https://avajs.dev). 'MD047', 'single-trailing-newline', ], + severity: 'error', }, { errorContext: null, @@ -1884,6 +1973,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -1904,6 +1994,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -1924,6 +2015,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -1944,6 +2036,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -1964,6 +2057,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -1984,6 +2078,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2004,6 +2099,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2024,6 +2120,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2044,6 +2141,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2064,6 +2162,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2084,6 +2183,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2104,6 +2204,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2124,6 +2225,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2144,6 +2246,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2164,6 +2267,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -2184,6 +2288,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2204,6 +2309,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2224,6 +2330,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2244,6 +2351,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2264,6 +2372,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2284,6 +2393,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2304,6 +2414,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2324,6 +2435,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2344,6 +2456,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2364,6 +2477,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2384,6 +2498,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2404,6 +2519,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2424,6 +2540,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -2444,6 +2561,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, ], fixed: `Not a heading {MD041}␊ @@ -2534,6 +2652,7 @@ Generated by [AVA](https://avajs.dev). 'MD051', 'link-fragments', ], + severity: 'error', }, { errorContext: '[link with a][undefined-label]', @@ -2550,6 +2669,7 @@ Generated by [AVA](https://avajs.dev). 'MD052', 'reference-links-images', ], + severity: 'error', }, { errorContext: '[unused-label]: {MD053}', @@ -2568,6 +2688,7 @@ Generated by [AVA](https://avajs.dev). 'MD053', 'link-image-reference-definitions', ], + severity: 'error', }, ], fixed: `# detailed-results-MD051-MD060␊ @@ -2601,6 +2722,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, ], fixed: `## A level 2 top level heading␊ @@ -2642,6 +2764,7 @@ Generated by [AVA](https://avajs.dev). 'MD018', 'no-missing-space-atx', ], + severity: 'error', }, { errorContext: '## Heading 2 {MD019}', @@ -2661,6 +2784,7 @@ Generated by [AVA](https://avajs.dev). 'MD019', 'no-multiple-space-atx', ], + severity: 'error', }, { errorContext: '##Heading 3 {MD020} ##', @@ -2681,6 +2805,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 4 {MD020}##', @@ -2701,6 +2826,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '##Heading 5 {MD020}##', @@ -2721,6 +2847,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 5 {MD021} ##', @@ -2740,6 +2867,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 6 {MD021} ##', @@ -2759,6 +2887,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 7 {MD021} ##', @@ -2778,6 +2907,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 7 {MD021} ##', @@ -2797,6 +2927,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, ], fixed: `# atx-heading-spacing-trailing-spaces␊ @@ -2846,6 +2977,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 2 {MD020}##', @@ -2866,6 +2998,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '##Heading 3 {MD020}##', @@ -2886,6 +3019,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 4 {MD021} ##', @@ -2905,6 +3039,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 5 {MD021} ##', @@ -2924,6 +3059,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 6 {MD021} ##', @@ -2943,6 +3079,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 6 {MD021} ##', @@ -2962,6 +3099,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 7 {MD021} ##', @@ -2981,6 +3119,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 7 {MD021} ##', @@ -3000,6 +3139,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, ], fixed: `# Heading 1 {MD020} #␊ @@ -3053,6 +3193,7 @@ Generated by [AVA](https://avajs.dev). 'MD018', 'no-missing-space-atx', ], + severity: 'error', }, { errorContext: '## Heading 2 {MD019}', @@ -3072,6 +3213,7 @@ Generated by [AVA](https://avajs.dev). 'MD019', 'no-multiple-space-atx', ], + severity: 'error', }, { errorContext: '## Heading 3 {MD019}', @@ -3091,6 +3233,7 @@ Generated by [AVA](https://avajs.dev). 'MD019', 'no-multiple-space-atx', ], + severity: 'error', }, ], fixed: `# Heading 1 {MD018}␊ @@ -3185,6 +3328,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/fail', @@ -3205,6 +3349,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/fail', @@ -3225,6 +3370,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/fail', @@ -3245,6 +3391,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/fail', @@ -3265,6 +3412,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/fail', @@ -3285,6 +3433,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, ], fixed: `# Bare URLs in HTML␊ @@ -3343,6 +3492,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/', @@ -3363,6 +3513,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/?query=str...', @@ -3383,6 +3534,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com/info.htm', @@ -3403,6 +3555,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3423,6 +3576,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3443,6 +3597,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3463,6 +3618,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3483,6 +3639,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3503,6 +3660,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3523,6 +3681,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com#heading-', @@ -3543,6 +3702,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'user@example.com', @@ -3563,6 +3723,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: 'https://example.com', @@ -3583,6 +3744,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, ], fixed: `# Detailed Results Bare URLs␊ @@ -3721,6 +3883,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '2. ```text', @@ -3738,6 +3901,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -3755,6 +3919,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '3. ```text', @@ -3772,6 +3937,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -3789,6 +3955,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '- ```text', @@ -3806,6 +3973,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -3823,6 +3991,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '- ```text', @@ -3840,6 +4009,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```', @@ -3857,6 +4027,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> 2. ```text', @@ -3874,6 +4045,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```', @@ -3891,6 +4063,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> 3. ```text', @@ -3908,6 +4081,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```', @@ -3925,6 +4099,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> - ```text', @@ -3942,6 +4117,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```', @@ -3959,6 +4135,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> - ```text', @@ -3976,6 +4153,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```', @@ -3993,6 +4171,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > 2. ```text', @@ -4010,6 +4189,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```', @@ -4027,6 +4207,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > 3. ```text', @@ -4044,6 +4225,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```', @@ -4061,6 +4243,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > - ```text', @@ -4078,6 +4261,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```', @@ -4095,6 +4279,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > - ```text', @@ -4112,6 +4297,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, ], fixed: `# Blanks Around Fences In Lists␊ @@ -4227,6 +4413,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings␊ @@ -4288,6 +4475,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Elderberry {MD022}', @@ -4306,6 +4494,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings␊ @@ -4368,6 +4557,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings␊ @@ -4430,6 +4620,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Elderberry {MD022}', @@ -4447,6 +4638,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings␊ @@ -4513,6 +4705,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '## Banana - Top {MD022}', @@ -4529,6 +4722,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '## Banana - Bottom {MD022}', @@ -4546,6 +4740,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '### Cherry - Top {MD022}', @@ -4562,6 +4757,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '### Cherry - Bottom {MD022}', @@ -4579,6 +4775,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '#### Durian - Bottom {MD022} ####', @@ -4597,6 +4794,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '##### Elderberry - Top {MD022}', @@ -4613,6 +4811,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '###### Fig - Top {MD022} ######', @@ -4629,6 +4828,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '###### Fig - Bottom {MD022} ######', @@ -4648,6 +4848,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Grape - Top {MD022}', @@ -4664,6 +4865,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Honeycomb - Top {MD022}', @@ -4680,6 +4882,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Honeycomb - Bottom {MD022}', @@ -4697,6 +4900,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings (Arrays)␊ @@ -4866,6 +5070,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '## Durian {MD022} ##', @@ -4882,6 +5087,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Elderberry {MD022}', @@ -4898,6 +5104,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: 'Elderberry {MD022}', @@ -4915,6 +5122,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `# Blanks Around Headings␊ @@ -4971,6 +5179,7 @@ Generated by [AVA](https://avajs.dev). 'MD055', 'table-pipe-style', ], + severity: 'error', }, { errorContext: null, @@ -4987,6 +5196,7 @@ Generated by [AVA](https://avajs.dev). 'MD055', 'table-pipe-style', ], + severity: 'error', }, { errorContext: null, @@ -5003,6 +5213,7 @@ Generated by [AVA](https://avajs.dev). 'MD056', 'table-column-count', ], + severity: 'error', }, { errorContext: '| Header | {MD058} |', @@ -5019,6 +5230,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Cell | {MD058} |', @@ -5036,6 +5248,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '> | Header | {MD058} |', @@ -5052,6 +5265,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '> | Cell | {MD058} |', @@ -5069,6 +5283,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '> | Cell | {MD058} |', @@ -5086,6 +5301,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Header | {MD058} |', @@ -5102,6 +5318,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Cell | {MD058} |', @@ -5119,6 +5336,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Header | {MD058} |', @@ -5135,6 +5353,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Cell | {MD058} |', @@ -5152,6 +5371,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Header | {MD058} |', @@ -5168,6 +5388,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| Cell | {MD058} |', @@ -5185,6 +5406,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, ], fixed: `# Blanks Around Tables␊ @@ -5343,6 +5565,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> # Quoted heading in list {MD022} {MD025}', @@ -5360,6 +5583,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > # Double-quoted heading in list {MD022} {MD025}', @@ -5376,6 +5600,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > # Double-quoted heading in list {MD022} {MD025}', @@ -5393,6 +5618,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Quoted sub-heading in list {MD022}', @@ -5409,6 +5635,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Quoted sub-heading in list {MD022}', @@ -5426,6 +5653,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Quoted indented sub-heading in list {MD022} {MD023} {MD027}', @@ -5442,6 +5670,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Quoted indented sub-heading in list {MD022} {MD023} {MD027}', @@ -5459,6 +5688,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Heading One {MD022}', @@ -5476,6 +5706,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Heading Two {MD022}', @@ -5492,6 +5723,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Heading Three {MD022}', @@ -5508,6 +5740,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Heading Three {MD022}', @@ -5525,6 +5758,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Four {MD022}', @@ -5541,6 +5775,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Four {MD022}', @@ -5558,6 +5793,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Five {MD022}', @@ -5574,6 +5810,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Five {MD022}', @@ -5591,6 +5828,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Six {MD022}', @@ -5607,6 +5845,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> > ### Heading Six {MD022}', @@ -5624,6 +5863,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '> ## Quoted indented sub-head...', @@ -5643,6 +5883,7 @@ Generated by [AVA](https://avajs.dev). 'MD023', 'heading-start-left', ], + severity: 'error', }, { errorContext: ' > ## Quoted indented sub-he...', @@ -5662,6 +5903,7 @@ Generated by [AVA](https://avajs.dev). 'MD023', 'heading-start-left', ], + severity: 'error', }, { errorContext: 'Quoted heading {MD025}', @@ -5676,6 +5918,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, { errorContext: 'Double-quoted heading {MD025}', @@ -5690,6 +5933,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, { errorContext: 'Quoted heading in list {MD022}...', @@ -5704,6 +5948,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, { errorContext: 'Double-quoted heading in list ...', @@ -5718,6 +5963,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, { errorContext: '> ## Quoted indented sub-head...', @@ -5737,6 +5983,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > ## Quoted indented sub-he...', @@ -5756,6 +6003,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -5877,6 +6125,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > B {MD027}', @@ -5896,6 +6145,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> C {MD027}', @@ -5915,6 +6165,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> A {MD027}', @@ -5934,6 +6185,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > B {MD027}', @@ -5953,6 +6205,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > > C {MD027}', @@ -5972,6 +6225,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > D {MD027}', @@ -5991,6 +6245,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> E {MD027}', @@ -6010,6 +6265,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> A {MD027}', @@ -6029,6 +6285,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '>> B {MD027}', @@ -6048,6 +6305,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '>>> C {MD027}', @@ -6067,6 +6325,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '>> D {MD027}', @@ -6086,6 +6345,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> E {MD027}', @@ -6105,6 +6365,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > Text {MD027}', @@ -6124,6 +6385,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6143,6 +6405,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6162,6 +6425,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > Text {MD027}', @@ -6181,6 +6445,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > > Text {MD027}', @@ -6200,6 +6465,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> > > > Text {MD027}', @@ -6219,6 +6485,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '>> >> Text {MD027}', @@ -6238,6 +6505,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6257,6 +6525,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6276,6 +6545,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6295,6 +6565,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > > Text {MD027}', @@ -6314,6 +6585,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, ], fixed: `# Nested blockquote␊ @@ -6418,6 +6690,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, { errorContext: null, @@ -6433,6 +6706,7 @@ Generated by [AVA](https://avajs.dev). 'MD012', 'no-multiple-blanks', ], + severity: 'error', }, { errorContext: null, @@ -6446,6 +6720,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -6459,6 +6734,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -6472,6 +6748,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -6485,6 +6762,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -6498,6 +6776,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, ], fixed: `# blockquote_blank_lines␊ @@ -6559,6 +6838,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> Bar {MD027}', @@ -6578,6 +6858,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> *foo* {MD027}', @@ -6597,6 +6878,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> **bar** {MD027}', @@ -6616,6 +6898,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> "Baz" {MD027}', @@ -6635,6 +6918,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> `qux` {MD027}', @@ -6654,6 +6938,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> Foo {MD027}', @@ -6673,6 +6958,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> Bar {MD027}', @@ -6692,6 +6978,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > Text {MD027}', @@ -6711,6 +6998,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > Text {MD027}', @@ -6730,6 +7018,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: ' > Text {MD027}', @@ -6749,6 +7038,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: '> ', @@ -6768,6 +7058,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, ], fixed: `# blockquote_spaces␊ @@ -6853,6 +7144,7 @@ Generated by [AVA](https://avajs.dev). 'MD001', 'heading-increment', ], + severity: 'error', }, { errorContext: null, @@ -6866,6 +7158,7 @@ Generated by [AVA](https://avajs.dev). 'MD003', 'heading-style', ], + severity: 'error', }, { errorContext: null, @@ -6879,6 +7172,7 @@ Generated by [AVA](https://avajs.dev). 'MD003', 'heading-style', ], + severity: 'error', }, { errorContext: null, @@ -6899,6 +7193,7 @@ Generated by [AVA](https://avajs.dev). 'MD004', 'ul-style', ], + severity: 'error', }, { errorContext: null, @@ -6915,6 +7210,7 @@ Generated by [AVA](https://avajs.dev). 'MD005', 'list-indent', ], + severity: 'error', }, { errorContext: null, @@ -6935,6 +7231,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -6955,6 +7252,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -6974,6 +7272,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, { errorContext: null, @@ -6994,6 +7293,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -7014,6 +7314,7 @@ Generated by [AVA](https://avajs.dev). 'MD011', 'no-reversed-links', ], + severity: 'error', }, { errorContext: null, @@ -7029,6 +7330,7 @@ Generated by [AVA](https://avajs.dev). 'MD012', 'no-multiple-blanks', ], + severity: 'error', }, { errorContext: null, @@ -7045,6 +7347,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: '$ dollar {MD014}', @@ -7064,6 +7367,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '#Heading 4 {MD018}', @@ -7083,6 +7387,7 @@ Generated by [AVA](https://avajs.dev). 'MD018', 'no-missing-space-atx', ], + severity: 'error', }, { errorContext: '# Heading 5 {MD019}', @@ -7102,6 +7407,7 @@ Generated by [AVA](https://avajs.dev). 'MD019', 'no-multiple-space-atx', ], + severity: 'error', }, { errorContext: '#Heading 6 {MD020} #', @@ -7122,6 +7428,7 @@ Generated by [AVA](https://avajs.dev). 'MD020', 'no-missing-space-closed-atx', ], + severity: 'error', }, { errorContext: '# Heading 7 {MD021} {MD003} ...', @@ -7141,6 +7448,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '... Heading 7 {MD021} {MD003} #', @@ -7160,6 +7468,7 @@ Generated by [AVA](https://avajs.dev). 'MD021', 'no-multiple-space-closed-atx', ], + severity: 'error', }, { errorContext: '## Heading 10 {MD022}', @@ -7176,6 +7485,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: ' # Heading 9 {MD023} {MD026}.', @@ -7195,6 +7505,7 @@ Generated by [AVA](https://avajs.dev). 'MD023', 'heading-start-left', ], + severity: 'error', }, { errorContext: 'Heading 8', @@ -7208,6 +7519,7 @@ Generated by [AVA](https://avajs.dev). 'MD024', 'no-duplicate-heading', ], + severity: 'error', }, { errorContext: null, @@ -7227,6 +7539,7 @@ Generated by [AVA](https://avajs.dev). 'MD026', 'no-trailing-punctuation', ], + severity: 'error', }, { errorContext: '> {MD027}', @@ -7246,6 +7559,7 @@ Generated by [AVA](https://avajs.dev). 'MD027', 'no-multiple-space-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -7259,6 +7573,7 @@ Generated by [AVA](https://avajs.dev). 'MD028', 'no-blanks-blockquote', ], + severity: 'error', }, { errorContext: null, @@ -7279,6 +7594,7 @@ Generated by [AVA](https://avajs.dev). 'MD029', 'ol-prefix', ], + severity: 'error', }, { errorContext: null, @@ -7299,6 +7615,7 @@ Generated by [AVA](https://avajs.dev). 'MD030', 'list-marker-space', ], + severity: 'error', }, { errorContext: '```', @@ -7316,6 +7633,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '* list {MD032}', @@ -7333,6 +7651,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: '+ list {MD004} {MD007} {MD030...', @@ -7349,6 +7668,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: '* list {MD032} {MD046:49}', @@ -7365,6 +7685,7 @@ Generated by [AVA](https://avajs.dev). 'MD032', 'blanks-around-lists', ], + severity: 'error', }, { errorContext: null, @@ -7381,6 +7702,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: 'https://example.com/page', @@ -7401,6 +7723,7 @@ Generated by [AVA](https://avajs.dev). 'MD034', 'no-bare-urls', ], + severity: 'error', }, { errorContext: null, @@ -7414,6 +7737,7 @@ Generated by [AVA](https://avajs.dev). 'MD035', 'hr-style', ], + severity: 'error', }, { errorContext: 'Section {MD036} Heading', @@ -7427,6 +7751,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'h _', @@ -7446,6 +7771,7 @@ Generated by [AVA](https://avajs.dev). 'MD037', 'no-space-in-emphasis', ], + severity: 'error', }, { errorContext: '`with `', @@ -7465,6 +7791,7 @@ Generated by [AVA](https://avajs.dev). 'MD038', 'no-space-in-code', ], + severity: 'error', }, { errorContext: '[link with space ]', @@ -7484,6 +7811,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '```', @@ -7497,6 +7825,7 @@ Generated by [AVA](https://avajs.dev). 'MD040', 'fenced-code-language', ], + severity: 'error', }, { errorContext: '## Heading 1 {MD041:1}', @@ -7511,6 +7840,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, { errorContext: '[empty link]()', @@ -7527,6 +7857,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: null, @@ -7540,6 +7871,7 @@ Generated by [AVA](https://avajs.dev). 'MD043', 'required-headings', ], + severity: 'error', }, { errorContext: null, @@ -7560,6 +7892,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -7576,6 +7909,7 @@ Generated by [AVA](https://avajs.dev). 'MD045', 'no-alt-text', ], + severity: 'error', }, { errorContext: null, @@ -7589,6 +7923,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -7602,6 +7937,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -7615,6 +7951,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -7635,6 +7972,7 @@ Generated by [AVA](https://avajs.dev). 'MD047', 'single-trailing-newline', ], + severity: 'error', }, { errorContext: null, @@ -7648,6 +7986,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -7668,6 +8007,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -7688,6 +8028,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -7708,6 +8049,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -7728,6 +8070,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: '[Missing link fragment](#missing)', @@ -7744,6 +8087,7 @@ Generated by [AVA](https://avajs.dev). 'MD051', 'link-fragments', ], + severity: 'error', }, { errorContext: '[Missing link][label]', @@ -7760,6 +8104,7 @@ Generated by [AVA](https://avajs.dev). 'MD052', 'reference-links-images', ], + severity: 'error', }, { errorContext: '[unused]: link-destination', @@ -7778,6 +8123,7 @@ Generated by [AVA](https://avajs.dev). 'MD053', 'link-image-reference-definitions', ], + severity: 'error', }, { errorContext: '[text][url]', @@ -7798,6 +8144,7 @@ Generated by [AVA](https://avajs.dev). 'MD054', 'link-image-style', ], + severity: 'error', }, { errorContext: null, @@ -7814,6 +8161,7 @@ Generated by [AVA](https://avajs.dev). 'MD055', 'table-pipe-style', ], + severity: 'error', }, { errorContext: null, @@ -7830,6 +8178,7 @@ Generated by [AVA](https://avajs.dev). 'MD056', 'table-column-count', ], + severity: 'error', }, { errorContext: '| table {MD058} |', @@ -7846,6 +8195,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '| cell {MD058} |', @@ -7863,6 +8213,7 @@ Generated by [AVA](https://avajs.dev). 'MD058', 'blanks-around-tables', ], + severity: 'error', }, { errorContext: '[click here]', @@ -7879,6 +8230,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: null, @@ -7895,6 +8247,7 @@ Generated by [AVA](https://avajs.dev). 'MD060', 'table-column-style', ], + severity: 'error', }, ], fixed: `## Heading 1 {MD041:1}␊ @@ -8072,6 +8425,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8092,6 +8446,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, ], fixed: `# bulleted_list_2_space_indent␊ @@ -8136,6 +8491,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8156,6 +8512,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, ], fixed: `# bulleted_list_4_space_indent␊ @@ -8191,6 +8548,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8211,6 +8569,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8231,6 +8590,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8251,6 +8611,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8271,6 +8632,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8291,6 +8653,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8311,6 +8674,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8331,6 +8695,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8351,6 +8716,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8371,6 +8737,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8391,6 +8758,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8411,6 +8779,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8431,6 +8800,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8451,6 +8821,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, { errorContext: null, @@ -8471,6 +8842,7 @@ Generated by [AVA](https://avajs.dev). 'MD007', 'ul-indent', ], + severity: 'error', }, ], fixed: `# Bulleted List Not at Beginning of Line␊ @@ -8601,6 +8973,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, ], fixed: `# code-block-trailing-spaces␊ @@ -8671,6 +9044,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8691,6 +9065,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8711,6 +9086,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8731,6 +9107,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8751,6 +9128,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8771,6 +9149,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8791,6 +9170,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8811,6 +9191,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8831,6 +9212,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8851,6 +9233,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8871,6 +9254,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -8961,6 +9345,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -8974,6 +9359,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -9045,6 +9431,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9065,6 +9452,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9085,6 +9473,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9105,6 +9494,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9125,6 +9515,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9145,6 +9536,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9165,6 +9557,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9185,6 +9578,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9205,6 +9599,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9225,6 +9620,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9245,6 +9641,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9258,6 +9655,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -9323,6 +9721,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -9343,6 +9742,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -9363,6 +9763,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, { errorContext: null, @@ -9383,6 +9784,7 @@ Generated by [AVA](https://avajs.dev). 'MD044', 'proper-names', ], + severity: 'error', }, ], fixed: `# code Blocks and Spans {MD044}␊ @@ -9447,6 +9849,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: null, @@ -9463,6 +9866,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: null, @@ -9479,6 +9883,7 @@ Generated by [AVA](https://avajs.dev). 'MD013', 'line-length', ], + severity: 'error', }, { errorContext: null, @@ -9492,6 +9897,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# md013-code-blocks-spaces␊ @@ -9564,6 +9970,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -9581,6 +9988,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```markdown', @@ -9598,6 +10006,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> ```', @@ -9615,6 +10024,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```markdown', @@ -9632,6 +10042,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '> > ```', @@ -9649,6 +10060,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, ], fixed: `# Detailed Results Code Fences in Blockquotes␊ @@ -9705,6 +10117,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9725,6 +10138,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: `# Code With Tabs Allowed␊ @@ -9788,6 +10202,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9808,6 +10223,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9828,6 +10244,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9848,6 +10265,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9868,6 +10286,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9888,6 +10307,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9908,6 +10328,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9928,6 +10349,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9948,6 +10370,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -9968,6 +10391,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: `# Code With Tabs Blocked␊ @@ -10024,6 +10448,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# code_block_consistency␊ @@ -10066,6 +10491,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ less foo {MD014}', @@ -10085,6 +10511,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ cat bar {MD014}', @@ -10104,6 +10531,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ mkdir test {MD014}', @@ -10123,6 +10551,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ cd test {MD014}', @@ -10142,6 +10571,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ ls test {MD014}', @@ -10161,6 +10591,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: ' $ ls example {MD014}', @@ -10180,6 +10611,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: null, @@ -10193,6 +10625,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# Code Block Dollar␊ @@ -10331,6 +10764,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ code {MD014}', @@ -10350,6 +10784,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ code {MD014}', @@ -10369,6 +10804,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ code {MD014}', @@ -10388,6 +10824,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ code {MD014}', @@ -10407,6 +10844,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ code {MD014}', @@ -10426,6 +10864,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: '$ npm install --save multimatc...', @@ -10445,6 +10884,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, { errorContext: ' $ ls example {MD014}', @@ -10464,6 +10904,7 @@ Generated by [AVA](https://avajs.dev). 'MD014', 'commands-show-output', ], + severity: 'error', }, ], fixed: `# Code Block Dollar Fence␊ @@ -10534,6 +10975,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -10547,6 +10989,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# code_block_fenced␊ @@ -10595,6 +11038,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# code_block_indented␊ @@ -10647,6 +11091,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -10660,6 +11105,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, ], fixed: `# code_fence_style_backtick␊ @@ -10710,6 +11156,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -10723,6 +11170,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, ], fixed: `# code_fence_style_tilde␊ @@ -10775,6 +11223,7 @@ Generated by [AVA](https://avajs.dev). 'MD012', 'no-multiple-blanks', ], + severity: 'error', }, ], fixed: `# consecutive_blank_lines␊ @@ -10880,6 +11329,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -10900,6 +11350,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: null, @@ -10920,6 +11371,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: ` text {MD010}␊ @@ -10976,6 +11428,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[this]', @@ -10992,6 +11445,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, ], fixed: `# Descriptive Link Text Override␊ @@ -11041,6 +11495,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -11060,6 +11515,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -11079,6 +11535,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: null, @@ -11099,6 +11556,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11119,6 +11577,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: '[here]', @@ -11135,6 +11594,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[Click here]', @@ -11151,6 +11611,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[here!]', @@ -11167,6 +11628,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[more]', @@ -11183,6 +11645,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[click here!!!!]', @@ -11199,6 +11662,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[click-here!!!!]', @@ -11215,6 +11679,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[link]', @@ -11231,6 +11696,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[link]', @@ -11247,6 +11713,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[click here]', @@ -11260,6 +11727,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[link]', @@ -11276,6 +11744,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -11292,6 +11761,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[*link*]', @@ -11308,6 +11778,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[_link_]', @@ -11324,6 +11795,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, { errorContext: '[~~link~~]', @@ -11340,6 +11812,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, ], fixed: `# Descriptive Link Text␊ @@ -11457,6 +11930,7 @@ Generated by [AVA](https://avajs.dev). 'MD018', 'no-missing-space-atx', ], + severity: 'error', }, ], fixed: `# Emoji Headings␊ @@ -11510,6 +11984,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11530,6 +12005,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11550,6 +12026,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11570,6 +12047,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11590,6 +12068,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11610,6 +12089,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11630,6 +12110,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -11650,6 +12131,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -11670,6 +12152,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -11690,6 +12173,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -11710,6 +12194,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -11730,6 +12215,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, ], fixed: `# Emphasis Markers␊ @@ -11789,6 +12275,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11809,6 +12296,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11829,6 +12317,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -11849,6 +12338,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -11895,6 +12385,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'Section 1.1: another section {...', @@ -11908,6 +12399,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'Section 2: yet more sections {...', @@ -11921,6 +12413,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'Section 3: oh no more sections...', @@ -11934,6 +12427,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'Section 4: emphasis as heading...', @@ -11947,6 +12441,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: 'Section 5: emphasis as heading...', @@ -11960,6 +12455,7 @@ Generated by [AVA](https://avajs.dev). 'MD036', 'no-emphasis-as-heading', ], + severity: 'error', }, { errorContext: null, @@ -11980,6 +12476,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12000,6 +12497,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12020,6 +12518,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, { errorContext: null, @@ -12040,6 +12539,7 @@ Generated by [AVA](https://avajs.dev). 'MD050', 'strong-style', ], + severity: 'error', }, ], fixed: `# emphasis_instead_of_headings␊ @@ -12128,6 +12628,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12148,6 +12649,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12168,6 +12670,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12188,6 +12691,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12208,6 +12712,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12228,6 +12733,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, ], fixed: `# Emphasis style asterisk␊ @@ -12284,6 +12790,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12304,6 +12811,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12324,6 +12832,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12344,6 +12853,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12364,6 +12874,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, { errorContext: null, @@ -12384,6 +12895,7 @@ Generated by [AVA](https://avajs.dev). 'MD049', 'emphasis-style', ], + severity: 'error', }, ], fixed: `# Emphasis style underscore␊ @@ -12436,6 +12948,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text](<>)', @@ -12452,6 +12965,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]( <> )', @@ -12468,6 +12982,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text](<> "title")', @@ -12484,6 +12999,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]( <> "title" )', @@ -12500,6 +13016,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text](#)', @@ -12516,6 +13033,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]( # )', @@ -12532,6 +13050,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text](# "title")', @@ -12548,6 +13067,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]( # "title" )', @@ -12564,6 +13084,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text][frag]', @@ -12580,6 +13101,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text][ frag ]', @@ -12596,6 +13118,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[frag][]', @@ -12612,6 +13135,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[frag]', @@ -12628,6 +13152,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]()', @@ -12644,6 +13169,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]()', @@ -12660,6 +13186,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]()', @@ -12676,6 +13203,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]()', @@ -12692,6 +13220,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, { errorContext: '[text]()', @@ -12708,6 +13237,7 @@ Generated by [AVA](https://avajs.dev). 'MD042', 'no-empty-links', ], + severity: 'error', }, ], fixed: `# Heading␊ @@ -13010,6 +13540,7 @@ Generated by [AVA](https://avajs.dev). 'MD040', 'fenced-code-language', ], + severity: 'error', }, { errorContext: null, @@ -13023,6 +13554,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, ], fixed: `# fenced_code_blocks␊ @@ -13075,6 +13607,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, { errorContext: null, @@ -13088,6 +13621,7 @@ Generated by [AVA](https://avajs.dev). 'MD046', 'code-block-style', ], + severity: 'error', }, ], fixed: `# test doc␊ @@ -13155,6 +13689,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13172,6 +13707,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~fence', @@ -13189,6 +13725,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~', @@ -13206,6 +13743,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```fence', @@ -13223,6 +13761,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13240,6 +13779,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~fence', @@ -13257,6 +13797,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~', @@ -13274,6 +13815,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```fence', @@ -13291,6 +13833,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13308,6 +13851,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~fence', @@ -13325,6 +13869,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~', @@ -13342,6 +13887,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```fence', @@ -13359,6 +13905,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13376,6 +13923,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~fence', @@ -13393,6 +13941,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~', @@ -13410,6 +13959,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '````fence', @@ -13427,6 +13977,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '````', @@ -13444,6 +13995,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~~fence', @@ -13461,6 +14013,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~~', @@ -13478,6 +14031,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '````fence', @@ -13495,6 +14049,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '`````', @@ -13512,6 +14067,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~~fence', @@ -13529,6 +14085,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '~~~~~', @@ -13546,6 +14103,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: null, @@ -13559,6 +14117,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -13572,6 +14131,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -13585,6 +14145,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -13598,6 +14159,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -13611,6 +14173,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, { errorContext: null, @@ -13624,6 +14187,7 @@ Generated by [AVA](https://avajs.dev). 'MD048', 'code-fence-style', ], + severity: 'error', }, ], fixed: `# heading␊ @@ -13748,6 +14312,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13765,6 +14330,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13782,6 +14348,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: '```', @@ -13799,6 +14366,7 @@ Generated by [AVA](https://avajs.dev). 'MD031', 'blanks-around-fences', ], + severity: 'error', }, { errorContext: null, @@ -13819,6 +14387,7 @@ Generated by [AVA](https://avajs.dev). 'MD047', 'single-trailing-newline', ], + severity: 'error', }, ], fixed: `\`\`\`␊ @@ -13894,6 +14463,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `Text {MD041}␊ @@ -13971,6 +14541,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `Text␊ @@ -14149,6 +14720,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, { errorContext: '# Fixing with Front Matter {MD022}', @@ -14166,6 +14738,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '## Nested Heading {MD022}', @@ -14182,6 +14755,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -14201,6 +14775,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -14220,6 +14795,7 @@ Generated by [AVA](https://avajs.dev). 'MD039', 'no-space-in-links', ], + severity: 'error', }, { errorContext: null, @@ -14240,6 +14816,7 @@ Generated by [AVA](https://avajs.dev). 'MD047', 'single-trailing-newline', ], + severity: 'error', }, { errorContext: '[ link ]', @@ -14256,6 +14833,7 @@ Generated by [AVA](https://avajs.dev). 'MD059', 'descriptive-link-text', ], + severity: 'error', }, ], fixed: `---␊ @@ -14293,6 +14871,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14397,6 +14976,7 @@ Generated by [AVA](https://avajs.dev). 'MD009', 'no-trailing-spaces', ], + severity: 'error', }, { errorContext: 'Text {MD041}', @@ -14411,6 +14991,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14453,6 +15034,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, { errorContext: 'layout: post {MD022}', @@ -14469,6 +15051,7 @@ Generated by [AVA](https://avajs.dev). 'MD022', 'blanks-around-headings', ], + severity: 'error', }, ], fixed: `Text text text␊ @@ -14507,6 +15090,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14545,6 +15129,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14607,6 +15192,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14642,6 +15228,7 @@ Generated by [AVA](https://avajs.dev). 'single-title', 'single-h1', ], + severity: 'error', }, ], fixed: `---␊ @@ -14838,6 +15425,7 @@ Generated by [AVA](https://avajs.dev). 'MD010', 'no-hard-tabs', ], + severity: 'error', }, ], fixed: `---␊ @@ -14874,6 +15462,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14890,6 +15479,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14906,6 +15496,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14922,6 +15513,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14938,6 +15530,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14954,6 +15547,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14970,6 +15564,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -14986,6 +15581,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15002,6 +15598,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15018,6 +15615,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15034,6 +15632,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15050,6 +15649,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15066,6 +15666,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15082,6 +15683,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, { errorContext: null, @@ -15098,6 +15700,7 @@ Generated by [AVA](https://avajs.dev). 'MD033', 'no-inline-html', ], + severity: 'error', }, ], fixed: `---␊ @@ -15275,6 +15878,7 @@ Generated by [AVA](https://avajs.dev). 'first-line-heading', 'first-line-h1', ], + severity: 'error', }, ], fixed: `