@storm-software/eslint 0.169.9 → 0.169.11

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.169.7-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.169.9-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.js CHANGED
@@ -8352,14 +8352,13 @@ async function typescript(options = {}) {
8352
8352
  {
8353
8353
  selector: "typeLike",
8354
8354
  format: ["PascalCase"],
8355
- custom: { regex: "^(UNSAFE_|EXPERIMENTAL_).*$", match: false },
8356
8355
  filter: { regex: "^(__String|[A-Za-z]+_[A-Za-z]+)$", match: false }
8357
8356
  },
8358
8357
  {
8359
8358
  selector: "interface",
8360
8359
  format: ["PascalCase"],
8361
8360
  custom: {
8362
- regex: "^(I[A-Z]|UNSAFE_|EXPERIMENTAL_)",
8361
+ regex: "^I[A-Z]",
8363
8362
  match: false
8364
8363
  },
8365
8364
  filter: {
@@ -8371,7 +8370,6 @@ async function typescript(options = {}) {
8371
8370
  selector: "variable",
8372
8371
  format: ["camelCase", "PascalCase", "UPPER_CASE"],
8373
8372
  leadingUnderscore: "allow",
8374
- custom: { regex: "^(UNSAFE_|EXPERIMENTAL_).*$", match: false },
8375
8373
  filter: {
8376
8374
  regex: "^(_{1,2}filename|_{1,2}dirname|_+|[A-Za-z]+_[A-Za-z]+)$",
8377
8375
  match: false
@@ -8381,7 +8379,6 @@ async function typescript(options = {}) {
8381
8379
  selector: "function",
8382
8380
  format: ["camelCase", "PascalCase"],
8383
8381
  leadingUnderscore: "allow",
8384
- custom: { regex: "^(UNSAFE_|EXPERIMENTAL_).*$", match: false },
8385
8382
  filter: { regex: "^[A-Za-z]+_[A-Za-z]+$", match: false }
8386
8383
  },
8387
8384
  {
@@ -8394,14 +8391,12 @@ async function typescript(options = {}) {
8394
8391
  selector: "method",
8395
8392
  format: ["camelCase", "PascalCase"],
8396
8393
  leadingUnderscore: "allow",
8397
- custom: { regex: "^(UNSAFE_|EXPERIMENTAL_).*$", match: false },
8398
8394
  filter: { regex: "^([0-9]+|[A-Za-z]+_[A-Za-z]+)$", match: false }
8399
8395
  },
8400
8396
  {
8401
8397
  selector: "memberLike",
8402
8398
  format: ["camelCase"],
8403
8399
  leadingUnderscore: "allow",
8404
- custom: { regex: "^(UNSAFE_|EXPERIMENTAL_).*$", match: false },
8405
8400
  filter: { regex: "^([0-9]+|[A-Za-z]+_[A-Za-z]+)$", match: false }
8406
8401
  },
8407
8402
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.169.9",
3
+ "version": "0.169.11",
4
4
  "type": "module",
5
5
  "description": "A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -164,8 +164,8 @@
164
164
  "@eslint/eslintrc": "^3.3.1",
165
165
  "@eslint/markdown": "^6.6.0",
166
166
  "@nx/eslint-plugin": "^21.4.1",
167
- "@storm-software/config": "^1.134.9",
168
- "@storm-software/config-tools": "^1.188.9",
167
+ "@storm-software/config": "^1.134.11",
168
+ "@storm-software/config-tools": "^1.188.11",
169
169
  "@stylistic/eslint-plugin": "^4.4.1",
170
170
  "@typescript-eslint/eslint-plugin": "^8.35.0",
171
171
  "@typescript-eslint/parser": "^8.35.0",
@@ -241,5 +241,5 @@
241
241
  },
242
242
  "publishConfig": { "access": "public" },
243
243
  "sideEffects": false,
244
- "gitHead": "f3ff9bcb84a9d2823718177c5f352a992137dd02"
244
+ "gitHead": "2badf6f22c49c7b246ef5d25c0bbdbd31c93f885"
245
245
  }