markdownlint-rule-search-replace
Advanced tools
Comparing version 1.0.5 to 1.0.6
{ | ||
"name": "markdownlint-rule-search-replace", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "A custom markdownlint rule for search and replaces", | ||
@@ -34,3 +34,3 @@ "main": "rule.js", | ||
"devDependencies": { | ||
"ava": "^4.3.0", | ||
"ava": "^5.0.1", | ||
"eslint": "^8.19.0", | ||
@@ -41,6 +41,6 @@ "eslint-config-prettier": "^8.5.0", | ||
"eslint-plugin-node": "^11.1.0", | ||
"eslint-plugin-unicorn": "^43.0.1", | ||
"markdownlint": "^0.26.0", | ||
"eslint-plugin-unicorn": "^45.0.0", | ||
"markdownlint": "^0.26.2", | ||
"prettier": "^2.7.1" | ||
} | ||
} |
@@ -167,1 +167,4 @@ # markdownlint-rule-search-replace | ||
``` | ||
## Projects using this custom rule | ||
- MDN Web Docs - [code](https://github.com/mdn/content/blob/main/.markdownlint-cli2.jsonc#L125) |
@@ -50,3 +50,3 @@ // @ts-check | ||
const gatHtmlCommentRanges = (content, lines) => { | ||
const regex = /<!--[.\n]*-->/gm; | ||
const regex = /<!--[.\n\s]*-->/gm; | ||
const ranges = []; | ||
@@ -53,0 +53,0 @@ let match = null; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12817
170