mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
7 lines
228 B
JavaScript
7 lines
228 B
JavaScript
"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" };
|