@storm-software/eslint 0.170.40 → 0.170.41
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/dist/preset.cjs +6 -2
- package/dist/preset.js +6 -2
- package/package.json +4 -4
package/dist/preset.cjs
CHANGED
|
@@ -2797,9 +2797,13 @@ ${message.map(
|
|
|
2797
2797
|
depth3 + 1
|
|
2798
2798
|
)}`
|
|
2799
2799
|
).join("\n")}` : typeof message === "object" ? `
|
|
2800
|
-
${Object.keys(message).filter(
|
|
2800
|
+
${Object.keys(message).filter(
|
|
2801
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
2802
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
2801
2803
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
2802
|
-
(key2) => !skip.includes(
|
|
2804
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
2805
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
2806
|
+
)
|
|
2803
2807
|
).length === 0 ? "{}" : formatLogMessage(
|
|
2804
2808
|
message[key],
|
|
2805
2809
|
{ prefix: `${prefix}--`, skip, sort },
|
package/dist/preset.js
CHANGED
|
@@ -2221,9 +2221,13 @@ ${message.map(
|
|
|
2221
2221
|
depth2 + 1
|
|
2222
2222
|
)}`
|
|
2223
2223
|
).join("\n")}` : typeof message === "object" ? `
|
|
2224
|
-
${Object.keys(message).filter(
|
|
2224
|
+
${Object.keys(message).filter(
|
|
2225
|
+
(key) => !skip.map((k) => k.toLowerCase()).includes(typeof key === "string" ? key.toLowerCase() : key)
|
|
2226
|
+
).sort(sort ? (a, b) => a.localeCompare(b) : void 0).map(
|
|
2225
2227
|
(key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
|
|
2226
|
-
(key2) => !skip.includes(
|
|
2228
|
+
(key2) => !skip.map((k) => k.toLowerCase()).includes(
|
|
2229
|
+
typeof key2 === "string" ? key2.toLowerCase() : key2
|
|
2230
|
+
)
|
|
2227
2231
|
).length === 0 ? "{}" : formatLogMessage(
|
|
2228
2232
|
message[key],
|
|
2229
2233
|
{ prefix: `${prefix}--`, skip, sort },
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.170.
|
|
3
|
+
"version": "0.170.41",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
|
|
6
6
|
"keywords": [
|
|
@@ -141,8 +141,8 @@
|
|
|
141
141
|
"@eslint/eslintrc": "^3.3.5",
|
|
142
142
|
"@eslint/markdown": "^6.6.0",
|
|
143
143
|
"@nx/eslint-plugin": "22.7.1",
|
|
144
|
-
"@storm-software/config": "1.137.
|
|
145
|
-
"@storm-software/config-tools": "1.190.
|
|
144
|
+
"@storm-software/config": "1.137.52",
|
|
145
|
+
"@storm-software/config-tools": "1.190.20",
|
|
146
146
|
"@stylistic/eslint-plugin": "^4.4.1",
|
|
147
147
|
"@typescript-eslint/eslint-plugin": "^8.59.3",
|
|
148
148
|
"@typescript-eslint/parser": "^8.59.3",
|
|
@@ -239,5 +239,5 @@
|
|
|
239
239
|
"prettier-plugin-astro": "^0.14.0"
|
|
240
240
|
},
|
|
241
241
|
"publishConfig": { "access": "public" },
|
|
242
|
-
"gitHead": "
|
|
242
|
+
"gitHead": "b1f508805815ee86f76ec6bb122f736ebf447ffc"
|
|
243
243
|
}
|