@aspruyt/xfg 3.7.5 → 3.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -372,10 +372,10 @@ function formatFullConfig(ruleset, indent = 2) {
|
|
|
372
372
|
lines.push(style.color(`${pad}+ ${key}:`));
|
|
373
373
|
for (const item of value) {
|
|
374
374
|
if (typeof item === "object" && item !== null) {
|
|
375
|
-
lines.push(style.color(`${pad}
|
|
375
|
+
lines.push(style.color(`${pad} + ${JSON.stringify(item)}`));
|
|
376
376
|
}
|
|
377
377
|
else {
|
|
378
|
-
lines.push(style.color(`${pad}
|
|
378
|
+
lines.push(style.color(`${pad} + ${formatValue(item)}`));
|
|
379
379
|
}
|
|
380
380
|
}
|
|
381
381
|
}
|