mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-17 06:20:12 +01:00
Add test case for custom rule that imports an ESM module (refs #477).
This commit is contained in:
parent
b1aef98220
commit
23d8ed7c01
5 changed files with 87 additions and 2 deletions
|
|
@ -17,10 +17,14 @@ module.exports.lettersEX = lettersEX;
|
|||
const lintJavaScript = require("./lint-javascript");
|
||||
module.exports.lintJavaScript = lintJavaScript;
|
||||
|
||||
const validateJson = require("./validate-json");
|
||||
module.exports.validateJson = validateJson;
|
||||
|
||||
module.exports.all = [
|
||||
anyBlockquote,
|
||||
everyNLines,
|
||||
firstLine,
|
||||
lettersEX,
|
||||
lintJavaScript
|
||||
lintJavaScript,
|
||||
validateJson
|
||||
];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue