Update MD009/no-trailing-spaces default configuration to allow 2 spaces for hard break (fixes #114).

This commit is contained in:
David Anson 2018-04-30 21:34:19 -07:00
parent 36dc946f46
commit 3e1317709a
7 changed files with 29 additions and 26 deletions

View file

@ -59,7 +59,7 @@
"lineNumber": 15,
"ruleNames": [ "MD009", "no-trailing-spaces" ],
"ruleDescription": "Trailing spaces",
"errorDetail": "Expected: 0; Actual: 1",
"errorDetail": "Expected: 0 or 2; Actual: 1",
"errorContext": null,
"errorRange": [5, 1]
},

View file

@ -1,4 +1,7 @@
{
"default": true,
"MD009": {
"br_spaces": 0
},
"MD041": true
}

View file

@ -1,6 +0,0 @@
{
"default": true,
"MD009": {
"br_spaces": 2
}
}