@markuplint/ml-config
Advanced tools
Comparing version 2.0.0-rc.3 to 2.0.0-rc.5
@@ -135,6 +135,6 @@ "use strict"; | ||
function mergeRules(a, b) { | ||
if (!a) { | ||
if (a == null) { | ||
return b || undefined; | ||
} | ||
if (!b) { | ||
if (b == null) { | ||
return a || undefined; | ||
@@ -145,3 +145,3 @@ } | ||
const merged = mergeRule(res[key], rule); | ||
if (merged) { | ||
if (merged != null) { | ||
res[key] = merged; | ||
@@ -148,0 +148,0 @@ } |
{ | ||
"name": "@markuplint/ml-config", | ||
"version": "2.0.0-rc.3", | ||
"version": "2.0.0-rc.5", | ||
"description": "JSON Schema and TypeScript types of markuplint configure JSON", | ||
@@ -26,3 +26,3 @@ "repository": "git@github.com:markuplint/markuplint.git", | ||
}, | ||
"gitHead": "fd98dfe75d24c63190f0fd578ef2633ff638e6ab" | ||
"gitHead": "6faa4e54f16d3700d23953330abea89ccb9d6150" | ||
} |
Sorry, the diff of this file is not supported yet
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
56617