Skip to content

Commit

Permalink
Update markdownlint.js to group require calls together for new xo pol…
Browse files Browse the repository at this point in the history
…icy.
  • Loading branch information
DavidAnson committed Apr 11, 2023
1 parent 1910c83 commit cd230b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions markdownlint.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ const Module = require('node:module');
const os = require('node:os');
const process = require('node:process');
const program = require('commander');

const options = program.opts();
const glob = require('glob');
const markdownlint = require('markdownlint');
const rc = require('run-con');
const minimatch = require('minimatch');
const pkg = require('./package.json');

const options = program.opts();

function posixPath(p) {
return p.split(path.sep).join(path.posix.sep);
}
Expand Down

0 comments on commit cd230b0

Please sign in to comment.