@storm-software/linting-tools 1.133.49 → 1.133.50
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.
- package/bin/lint.cjs +6 -2
- package/bin/lint.js +6 -2
- package/package.json +2 -2
package/bin/lint.cjs
CHANGED
|
@@ -283927,9 +283927,13 @@ ${message.map(
|
|
|
283927
283927
|
depth2 + 1
|
|
283928
283928
|
)}`
|
|
283929
283929
|
).join("\n")}` : typeof message === "object" ? `
|
|
283930
|
-
${Object.keys(message).filter(
|
|
283930
|
+
${Object.keys(message).filter(
|
|
283931
|
+
(key) => !skip3.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
283932
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
283931
283933
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
283932
|
-
(key2) => !skip3.includes(
|
|
283934
|
+
(key2) => !skip3.map((k) => k.toLowerCase()).includes(
|
|
283935
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
283936
|
+
)
|
|
283933
283937
|
).length === 0 ? "{}" : formatLogMessage(
|
|
283934
283938
|
message[key],
|
|
283935
283939
|
{ prefix: `${prefix}--`, skip: skip3, sort },
|
package/bin/lint.js
CHANGED
|
@@ -284463,9 +284463,13 @@ ${message.map(
|
|
|
284463
284463
|
depth2 + 1
|
|
284464
284464
|
)}`
|
|
284465
284465
|
).join("\n")}` : typeof message === "object" ? `
|
|
284466
|
-
${Object.keys(message).filter(
|
|
284466
|
+
${Object.keys(message).filter(
|
|
284467
|
+
(key) => !skip3.map((k2) => k2.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
284468
|
+
).sort(sort ? (a2, b) => a2.localeCompare(b) : void 0).map(
|
|
284467
284469
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
284468
|
-
(key2) => !skip3.includes(
|
|
284470
|
+
(key2) => !skip3.map((k2) => k2.toLowerCase()).includes(
|
|
284471
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
284472
|
+
)
|
|
284469
284473
|
).length === 0 ? "{}" : formatLogMessage(
|
|
284470
284474
|
message[key],
|
|
284471
284475
|
{ prefix: `${prefix}--`, skip: skip3, sort },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.133.
|
|
3
|
+
"version": "1.133.50",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"keywords": [
|
|
@@ -159,5 +159,5 @@
|
|
|
159
159
|
"packageManager": "pnpm@10.3.0",
|
|
160
160
|
"engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
|
|
161
161
|
"publishConfig": { "access": "public" },
|
|
162
|
-
"gitHead": "
|
|
162
|
+
"gitHead": "b1f508805815ee86f76ec6bb122f736ebf447ffc"
|
|
163
163
|
}
|