mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-09-22 05:40:48 +02:00
19 lines
494 B
JavaScript
19 lines
494 B
JavaScript
![]() |
// @ts-check
|
||
|
|
||
|
"use strict";
|
||
|
|
||
|
const { addError, isBlankLine } = require("../helpers");
|
||
|
|
||
|
module.exports = {
|
||
|
"names": [ "MD047", "single-trailing-newline" ],
|
||
|
"description": "Files should end with a single newline character",
|
||
|
"tags": [ "blank_lines" ],
|
||
|
"function": function MD047(params, onError) {
|
||
|
const lastLineNumber = params.lines.length;
|
||
|
const lastLine = params.lines[lastLineNumber - 1];
|
||
|
if (!isBlankLine(lastLine)) {
|
||
|
addError(onError, lastLineNumber);
|
||
|
}
|
||
|
}
|
||
|
};
|