@storm-software/eslint 0.120.0 → 0.122.3

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/README.md CHANGED
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
21
21
 
22
22
  <h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
23
23
 
24
- [![Version](https://img.shields.io/badge/version-0.119.5-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.122.2-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/dist/preset.cjs CHANGED
@@ -479,17 +479,14 @@ var getChalk = /* @__PURE__ */ _chunkUSNT2KNTcjs.__name.call(void 0, () => {
479
479
  }, "getChalk");
480
480
 
481
481
  // ../config-tools/src/logger/is-unicode-supported.ts
482
- var _process = require('process'); var _process2 = _interopRequireDefault(_process);
483
482
  function isUnicodeSupported() {
484
- const { env } = _process2.default;
485
- const { TERM, TERM_PROGRAM } = env;
486
- if (_process2.default.platform !== "win32") {
487
- return TERM !== "linux";
483
+ if (process.platform !== "win32") {
484
+ return process.env.TERM !== "linux";
488
485
  }
489
- return Boolean(env.WT_SESSION) || // Windows Terminal
490
- Boolean(env.TERMINUS_SUBLIME) || // Terminus (<0.2.27)
491
- env.ConEmuTask === "{cmd::Cmder}" || // ConEmu and cmder
492
- TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
486
+ return Boolean(process.env.WT_SESSION) || // Windows Terminal
487
+ Boolean(process.env.TERMINUS_SUBLIME) || // Terminus (<0.2.27)
488
+ process.env.ConEmuTask === "{cmd::Cmder}" || // ConEmu and cmder
489
+ process.env.TERM_PROGRAM === "Terminus-Sublime" || process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty" || process.env.TERM === "rxvt-unicode" || process.env.TERM === "rxvt-unicode-256color" || process.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
493
490
  }
494
491
  _chunkUSNT2KNTcjs.__name.call(void 0, isUnicodeSupported, "isUnicodeSupported");
495
492
 
package/dist/preset.js CHANGED
@@ -479,17 +479,14 @@ var getChalk = /* @__PURE__ */ __name(() => {
479
479
  }, "getChalk");
480
480
 
481
481
  // ../config-tools/src/logger/is-unicode-supported.ts
482
- import process2 from "node:process";
483
482
  function isUnicodeSupported() {
484
- const { env } = process2;
485
- const { TERM, TERM_PROGRAM } = env;
486
- if (process2.platform !== "win32") {
487
- return TERM !== "linux";
483
+ if (process.platform !== "win32") {
484
+ return process.env.TERM !== "linux";
488
485
  }
489
- return Boolean(env.WT_SESSION) || // Windows Terminal
490
- Boolean(env.TERMINUS_SUBLIME) || // Terminus (<0.2.27)
491
- env.ConEmuTask === "{cmd::Cmder}" || // ConEmu and cmder
492
- TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
486
+ return Boolean(process.env.WT_SESSION) || // Windows Terminal
487
+ Boolean(process.env.TERMINUS_SUBLIME) || // Terminus (<0.2.27)
488
+ process.env.ConEmuTask === "{cmd::Cmder}" || // ConEmu and cmder
489
+ process.env.TERM_PROGRAM === "Terminus-Sublime" || process.env.TERM_PROGRAM === "vscode" || process.env.TERM === "xterm-256color" || process.env.TERM === "alacritty" || process.env.TERM === "rxvt-unicode" || process.env.TERM === "rxvt-unicode-256color" || process.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
493
490
  }
494
491
  __name(isUnicodeSupported, "isUnicodeSupported");
495
492
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.120.0",
3
+ "version": "0.122.3",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -40,8 +40,8 @@
40
40
  },
41
41
  "license": "Apache-2.0",
42
42
  "private": false,
43
- "packageManager": "pnpm@9.15.2",
44
- "engines": { "node": ">=22.4.0", "pnpm": ">=9.15.2" },
43
+ "packageManager": "pnpm@10.3.0",
44
+ "engines": { "node": ">=22.4.0", "pnpm": ">=10.3.0" },
45
45
  "main": "./dist/preset.cjs",
46
46
  "module": "./dist/preset.js",
47
47
  "exports": {
@@ -132,6 +132,7 @@
132
132
  "@eslint/config-inspector": "^0.5.1",
133
133
  "@nx/eslint": "^20.3.1",
134
134
  "@nx/workspace": "^20.3.1",
135
+ "eslint": "^9.20.0",
135
136
  "graphql": ">=16.9.0",
136
137
  "typescript": "^5.7.2"
137
138
  },
@@ -148,9 +149,10 @@
148
149
  "@graphql-eslint/eslint-plugin": "4.3.0",
149
150
  "@next/eslint-plugin-next": "15.1.6",
150
151
  "@nx/eslint-plugin": "^20.3.1",
152
+ "@typescript-eslint/utils": "^8.24.0",
151
153
  "chalk": "^5.4.1",
152
154
  "defu": "6.1.4",
153
- "eslint": "^9.12.0",
155
+ "eslint": "^9.20.0",
154
156
  "eslint-config-prettier": "10.0.1",
155
157
  "eslint-plugin-es-x": "7.6.0",
156
158
  "eslint-plugin-import": "^2.29.1",
@@ -170,7 +172,7 @@
170
172
  "eslint-plugin-sonarjs": "3.0.1",
171
173
  "eslint-plugin-storybook": "0.11.0",
172
174
  "eslint-plugin-tsdoc": "0.4.0",
173
- "eslint-plugin-unicorn": "56.0.0",
175
+ "eslint-plugin-unicorn": "56.0.1",
174
176
  "eslint-plugin-yml": "1.14.0",
175
177
  "globals": "^15.8.0",
176
178
  "jsonc-eslint-parser": "2.4.0",
@@ -185,7 +187,7 @@
185
187
  "@types/eslint": "^9.6.1",
186
188
  "@types/eslint__js": "^8.42.3",
187
189
  "@types/node": "^22.10.2",
188
- "eslint": "^9.12.0",
190
+ "esbuild": "^0.24.0",
189
191
  "eslint-typegen": "^1.0.0",
190
192
  "graphql": ">=16.9.0",
191
193
  "tsup": "8.3.5",