Remove automatic fix from MD028/no-blanks-blockquote due to ambiguity (fixes #315).

This commit is contained in:
David Anson 2020-11-23 14:57:19 -08:00
parent a6d30cb724
commit 09c5736385
4 changed files with 21 additions and 12 deletions

View file

@ -458,7 +458,7 @@ tape("applyFix", (test) => {
});
tape("applyFixes", (test) => {
test.plan(28);
test.plan(29);
const testCases = [
[
"Hello world.",
@ -886,6 +886,24 @@ tape("applyFixes", (test) => {
}
],
"Hello\r\nworld\r\n\r\n"
],
[
"Hello world",
[
{
"lineNumber": 1,
"fixInfo": {
"insertText": "x"
}
},
{
"lineNumber": 1,
"fixInfo": {
"deleteCount": -1
}
}
],
""
]
];
testCases.forEach((testCase) => {