mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
Update eslint configuration to latest format/rules.
This commit is contained in:
parent
b17dcb2ed9
commit
c668c7c6a9
3 changed files with 224 additions and 208 deletions
|
|
@ -861,8 +861,8 @@ module.exports = [
|
|||
errors.push(child.lineNumber);
|
||||
}
|
||||
lastChildRightSpaceLineNumber =
|
||||
(child.content.trimRight().length !== child.content.length) ?
|
||||
child.lineNumber : 0;
|
||||
(child.content.trimRight().length === child.content.length) ?
|
||||
0 : child.lineNumber;
|
||||
index++;
|
||||
}
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue