mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-20 16:00:13 +01:00
Add error/warning severity property to LintError object.
This commit is contained in:
parent
2954fee86c
commit
02a54a2b66
16 changed files with 4075 additions and 907 deletions
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
]
|
||||
);
|
||||
});
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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]`
|
||||
|
|
|
|||
Binary file not shown.
|
|
@ -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]`
|
||||
|
|
|
|||
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
Binary file not shown.
Loading…
Add table
Add a link
Reference in a new issue