@storm-software/eslint 0.170.50 → 0.170.51

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 CHANGED
@@ -2798,13 +2798,13 @@ ${message.sort(
2798
2798
  { prefix: `${prefix}--`, skip, sort },
2799
2799
  depth3 + 1
2800
2800
  )}`
2801
- ).join("\n")}` : typeof message === "object" ? `
2801
+ ).join("\n")}` : typeof message === "object" && message ? `
2802
2802
  ${Object.keys(message).filter(
2803
2803
  (key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
2804
2804
  ).sort(
2805
2805
  sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
2806
2806
  ).map(
2807
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
2807
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" && message[key] ? Object.keys(message[key]).filter(
2808
2808
  (key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
2809
2809
  ).length === 0 ? "{}" : formatLogMessage(
2810
2810
  message[key],
package/dist/preset.js CHANGED
@@ -2222,13 +2222,13 @@ ${message.sort(
2222
2222
  { prefix: `${prefix}--`, skip, sort },
2223
2223
  depth2 + 1
2224
2224
  )}`
2225
- ).join("\n")}` : typeof message === "object" ? `
2225
+ ).join("\n")}` : typeof message === "object" && message ? `
2226
2226
  ${Object.keys(message).filter(
2227
2227
  (key) => typeof key !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key.toLowerCase().trim())
2228
2228
  ).sort(
2229
2229
  sort ? (a, b) => !a && !b ? 0 : !a ? 1 : !b ? -1 : String(a).localeCompare(String(b)) : void 0
2230
2230
  ).map(
2231
- (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" ? Object.keys(message[key]).filter(
2231
+ (key) => ` ${prefix}> ${key} = ${_isFunction(message[key]) ? "<function>" : typeof message[key] === "object" && message[key] ? Object.keys(message[key]).filter(
2232
2232
  (key2) => typeof key2 !== "string" || !skip.map((k) => k.toLowerCase().trim()).includes(key2.toLowerCase().trim())
2233
2233
  ).length === 0 ? "{}" : formatLogMessage(
2234
2234
  message[key],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.170.50",
3
+ "version": "0.170.51",
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,13 +141,13 @@
141
141
  "@eslint/eslintrc": "^3.3.5",
142
142
  "@eslint/markdown": "^6.6.0",
143
143
  "@nx/eslint-plugin": "22.7.2",
144
- "@storm-software/config": "1.137.61",
145
- "@storm-software/config-tools": "1.190.29",
144
+ "@storm-software/config": "1.137.62",
145
+ "@storm-software/config-tools": "1.190.30",
146
146
  "@stylistic/eslint-plugin": "^4.4.1",
147
- "@typescript-eslint/eslint-plugin": "^8.59.4",
148
- "@typescript-eslint/parser": "^8.59.4",
149
- "@typescript-eslint/utils": "^8.59.4",
150
- "@vitest/eslint-plugin": "^1.6.17",
147
+ "@typescript-eslint/eslint-plugin": "^8.60.0",
148
+ "@typescript-eslint/parser": "^8.60.0",
149
+ "@typescript-eslint/utils": "^8.60.0",
150
+ "@vitest/eslint-plugin": "^1.6.18",
151
151
  "chalk": "^4.1.2",
152
152
  "defu": "^6.1.7",
153
153
  "eslint-config-flat-gitignore": "^2.3.0",
@@ -239,5 +239,5 @@
239
239
  "prettier-plugin-astro": "^0.14.0"
240
240
  },
241
241
  "publishConfig": { "access": "public" },
242
- "gitHead": "eb206b9a10666d67ccdbe098f94214e8efa4726a"
242
+ "gitHead": "9e0891595dca1742a6d48e6833c648e8ad79327c"
243
243
  }