markdownlint/lib/shared.js

8 lines
228 B
JavaScript
Raw Normal View History

"use strict";
// Regular expression for matching common newline characters
module.exports.newLineRe = /\r\n|\r|\n/;
// readFile options for reading with the UTF-8 encoding
module.exports.utf8Encoding = { "encoding": "utf8" };