tools: update lint-md.js to lint rfc name format

Update lint-md.js to lint for "RFC1234" and similar variants that should
be written as "RFC 1234".

PR-URL: https://github.com/nodejs/node/pull/26727
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com>
This commit is contained in:
Rich Trott 2019-03-17 21:33:06 -07:00
parent 3e781c5177
commit 72f578327a
3 changed files with 9 additions and 9 deletions

File diff suppressed because one or more lines are too long

View File

@ -2131,9 +2131,9 @@
}
},
"remark-lint-prohibited-strings": {
"version": "1.0.3",
"resolved": "https://registry.npmjs.org/remark-lint-prohibited-strings/-/remark-lint-prohibited-strings-1.0.3.tgz",
"integrity": "sha512-XgxDXQrNjnHd4+cGavdiW8y5ipN+DwJxWIZDUIWuWjEhmRmgUl8nJHXOKjIYZ8inYxuhVit9m1Y9kX12wO3Edw==",
"version": "1.1.0",
"resolved": "https://registry.npmjs.org/remark-lint-prohibited-strings/-/remark-lint-prohibited-strings-1.1.0.tgz",
"integrity": "sha512-z32El0GSaeWS3hCmh5iez/1KxGirdWHmEpiBMUXFxDQ7B2T+CdTgEoo8yr4t6R30U6yYQf7GampuJ4BjCXO3HA==",
"requires": {
"unified-lint-rule": "^1.0.2",
"unist-util-visit": "^1.2.0"
@ -2216,9 +2216,9 @@
}
},
"remark-preset-lint-node": {
"version": "1.5.0",
"resolved": "https://registry.npmjs.org/remark-preset-lint-node/-/remark-preset-lint-node-1.5.0.tgz",
"integrity": "sha512-jTcLB5icGf2X4vvkoECIBQydzg1pe3BfG77AA5dta9AFBPuvJhPlh2oPnCdi7DZeEuU7xz2kO9HYedv5wa55xQ==",
"version": "1.6.0",
"resolved": "https://registry.npmjs.org/remark-preset-lint-node/-/remark-preset-lint-node-1.6.0.tgz",
"integrity": "sha512-2aMruLIudApA+WMWkFHFaYog2KTvLj1abSI1ulhAug6ibsjUg7AcHtipjdx9jzfSHVGYCmAINujFme50P0bOVw==",
"requires": {
"remark-lint": "^6.0.0",
"remark-lint-blockquote-indentation": "^1.0.0",
@ -2252,7 +2252,7 @@
"remark-lint-no-tabs": "^1.0.0",
"remark-lint-no-trailing-spaces": "^2.0.0",
"remark-lint-no-unused-definitions": "^1.0.0",
"remark-lint-prohibited-strings": "^1.0.3",
"remark-lint-prohibited-strings": "^1.1.0",
"remark-lint-rule-style": "^1.0.0",
"remark-lint-strong-marker": "^1.0.0",
"remark-lint-table-cell-padding": "^1.0.0",

View File

@ -9,7 +9,7 @@
"markdown-extensions": "^1.1.1",
"remark": "^10.0.1",
"remark-lint": "^6.0.4",
"remark-preset-lint-node": "^1.4.0",
"remark-preset-lint-node": "^1.6.0",
"unified-args": "^6.0.0",
"unified-engine": "^5.1.0"
},