@storm-software/eslint 0.71.6 → 0.72.0

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.71.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.71.6-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.mjs CHANGED
@@ -1620,10 +1620,7 @@ const config$1 = {
1620
1620
  }
1621
1621
  ],
1622
1622
  // require trailing commas in multiline object literals
1623
- "comma-dangle": [
1624
- "error",
1625
- "never"
1626
- ],
1623
+ "comma-dangle": ["error", "never"],
1627
1624
  // enforce spacing before and after comma
1628
1625
  "comma-spacing": ["error", { before: false, after: true }],
1629
1626
  // enforce one true comma style
@@ -1874,7 +1871,7 @@ const config$1 = {
1874
1871
  "no-array-constructor": "error",
1875
1872
  // disallow use of bitwise operators
1876
1873
  // https://eslint.org/docs/rules/no-bitwise
1877
- "no-bitwise": "error",
1874
+ "no-bitwise": "off",
1878
1875
  // disallow use of the continue statement
1879
1876
  // https://eslint.org/docs/rules/no-continue
1880
1877
  "no-continue": "error",
@@ -1961,7 +1958,7 @@ const config$1 = {
1961
1958
  // disallow dangling underscores in identifiers
1962
1959
  // https://eslint.org/docs/rules/no-underscore-dangle
1963
1960
  "no-underscore-dangle": [
1964
- "error",
1961
+ "off",
1965
1962
  {
1966
1963
  allow: [],
1967
1964
  allowAfterThis: false,
@@ -1987,18 +1984,18 @@ const config$1 = {
1987
1984
  "error",
1988
1985
  {
1989
1986
  ObjectExpression: {
1990
- minProperties: 4,
1987
+ minProperties: 5,
1991
1988
  multiline: true,
1992
1989
  consistent: true
1993
1990
  },
1994
- ObjectPattern: { minProperties: 4, multiline: true, consistent: true },
1991
+ ObjectPattern: { minProperties: 5, multiline: true, consistent: true },
1995
1992
  ImportDeclaration: {
1996
- minProperties: 4,
1993
+ minProperties: 5,
1997
1994
  multiline: true,
1998
1995
  consistent: true
1999
1996
  },
2000
1997
  ExportDeclaration: {
2001
- minProperties: 4,
1998
+ minProperties: 5,
2002
1999
  multiline: true,
2003
2000
  consistent: true
2004
2001
  }
@@ -2189,6 +2186,7 @@ const config$1 = {
2189
2186
  "unicorn/import-style": "off",
2190
2187
  "unicorn/prefer-module": "off",
2191
2188
  "unicorn/consistent-function-scoping": "off",
2189
+ "unicorn/no-nested-ternary": "off",
2192
2190
  /*************************************************************
2193
2191
  *
2194
2192
  * Nx Rules - The following rules are specific to the Nx plugin
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.71.6",
3
+ "version": "0.72.0",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {