mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 22:10:13 +01:00
Add .mjs to linting, switch from eslint-plugin-node (no longer maintained) to eslint-plugin-n, update suppressions.
This commit is contained in:
parent
a2b1353db5
commit
0294b9bcc8
9 changed files with 59 additions and 56 deletions
|
|
@ -12,7 +12,9 @@ const strings = {
|
|||
|
||||
const start = new Date();
|
||||
for (let i = 0; i < 250; i++) {
|
||||
await markdownlint({strings});
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await markdownlint({ strings });
|
||||
}
|
||||
const end = new Date();
|
||||
// eslint-disable-next-line no-console
|
||||
console.log(`Elapsed: ${end - start}`);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue