0
0
Fork 0
mirror of https://github.com/DavidAnson/markdownlint-cli2-action.git synced 2024-11-21 22:01:30 +01:00

Update dependencies: actions/core to 1.9.0, @vercel/ncc to 0.34.0, eslint to 8.20.0, eslint-plugin-unicorn to 43.0.2.

This commit is contained in:
David Anson 2022-07-19 20:54:12 -07:00
parent 744f913a12
commit 4309653070
4 changed files with 724 additions and 259 deletions

View file

@ -62,6 +62,7 @@
"node/prefer-promises/dns": "error", "node/prefer-promises/dns": "error",
"node/prefer-promises/fs": "error", "node/prefer-promises/fs": "error",
"unicorn/no-array-callback-reference": "off",
"unicorn/no-unsafe-regex": "off", "unicorn/no-unsafe-regex": "off",
"unicorn/prefer-module": "off", "unicorn/prefer-module": "off",
"unicorn/prefer-top-level-await": "off" "unicorn/prefer-top-level-await": "off"

972
dist/index.js vendored

File diff suppressed because it is too large Load diff

View file

@ -35,7 +35,7 @@ const logError = (error) => {
const argv = const argv =
core.getInput("globs"). core.getInput("globs").
split("\n"). split("\n").
filter((glob) => String(glob)); filter(String);
markdownlintCli2({ markdownlintCli2({
argv, argv,

View file

@ -22,13 +22,13 @@
"upgrade": "npx --yes npm-check-updates --upgrade" "upgrade": "npx --yes npm-check-updates --upgrade"
}, },
"dependencies": { "dependencies": {
"@actions/core": "1.6.0", "@actions/core": "1.9.0",
"markdownlint-cli2": "0.4.0" "markdownlint-cli2": "0.4.0"
}, },
"devDependencies": { "devDependencies": {
"@vercel/ncc": "0.33.1", "@vercel/ncc": "0.34.0",
"eslint": "8.7.0", "eslint": "8.20.0",
"eslint-plugin-node": "11.1.0", "eslint-plugin-node": "11.1.0",
"eslint-plugin-unicorn": "40.1.0" "eslint-plugin-unicorn": "43.0.2"
} }
} }