Skip to content

Commit

Permalink
Upgrade: markdownlint dev dependencies (#14883)
Browse files Browse the repository at this point in the history
  • Loading branch information
bmish committed Aug 7, 2021
1 parent d66e941 commit e53d8cf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .markdownlintignore
@@ -0,0 +1 @@
CHANGELOG.md
3 changes: 2 additions & 1 deletion Makefile.js
Expand Up @@ -66,7 +66,8 @@ const NODE = "node ", // intentional extra space
// Files
RULE_FILES = glob.sync("lib/rules/*.js").filter(filePath => path.basename(filePath) !== "index.js"),
JSON_FILES = find("conf/").filter(fileType("json")),
MARKDOWN_FILES_ARRAY = find("docs/").concat(ls(".")).filter(fileType("md")),
MARKDOWNLINT_IGNORED_FILES = fs.readFileSync(path.join(__dirname, ".markdownlintignore"), "utf-8").split("\n"),
MARKDOWN_FILES_ARRAY = find("docs/").concat(ls(".")).filter(fileType("md")).filter(file => !MARKDOWNLINT_IGNORED_FILES.includes(file)),
TEST_FILES = "\"tests/{bin,lib,tools}/**/*.js\"",
PERF_ESLINTRC = path.join(PERF_TMP_DIR, "eslintrc.yml"),
PERF_MULTIFILES_TARGET_DIR = path.join(PERF_TMP_DIR, "eslint"),
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -116,8 +116,8 @@
"karma-webpack": "^5.0.0",
"lint-staged": "^11.0.0",
"load-perf": "^0.2.0",
"markdownlint": "^0.19.0",
"markdownlint-cli": "^0.22.0",
"markdownlint": "^0.23.1",
"markdownlint-cli": "^0.28.1",
"memfs": "^3.0.1",
"mocha": "^8.3.2",
"mocha-junit-reporter": "^2.0.0",
Expand Down

0 comments on commit e53d8cf

Please sign in to comment.