@storm-software/eslint 0.141.0 → 0.142.1

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.140.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)
24
+ [![Version](https://img.shields.io/badge/version-0.142.1-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
@@ -2705,7 +2705,7 @@ __name(perfectionist, "perfectionist");
2705
2705
 
2706
2706
  // src/configs/pnpm.ts
2707
2707
  async function pnpm(options = {}) {
2708
- const { overrides = {}, skip = [
2708
+ const { overrides = {}, skipPackages = [
2709
2709
  "typescript"
2710
2710
  ] } = options;
2711
2711
  const [pluginPnpm, parserJsonc] = await Promise.all([
@@ -2733,7 +2733,7 @@ async function pnpm(options = {}) {
2733
2733
  "pnpm/enforce-catalog": [
2734
2734
  "error",
2735
2735
  {
2736
- skip
2736
+ skipPackages
2737
2737
  }
2738
2738
  ],
2739
2739
  "pnpm/valid-catalog": "error",
@@ -4019,7 +4019,8 @@ function getStormConfig(options, ...userConfigs) {
4019
4019
  }
4020
4020
  if (options.pnpm ?? true) {
4021
4021
  configs2.push(pnpm({
4022
- overrides: getOverrides(options, "pnpm")
4022
+ overrides: getOverrides(options, "pnpm"),
4023
+ skipPackages: typeof options.pnpm !== "boolean" ? options.pnpm?.skipPackages : void 0
4023
4024
  }));
4024
4025
  }
4025
4026
  if (options.jsonc ?? true) {
package/dist/types.d.ts CHANGED
@@ -12718,7 +12718,7 @@ type PnpmEnforceCatalog = []|[{
12718
12718
 
12719
12719
  reuseExistingCatalog?: boolean
12720
12720
 
12721
- skip?: string[]
12721
+ skipPackages?: string[]
12722
12722
  }]
12723
12723
  // ----- pnpm/prefer-workspace-settings -----
12724
12724
  type PnpmPreferWorkspaceSettings = []|[{
@@ -16816,7 +16816,7 @@ interface OptionsPnpm extends OptionsOverrides {
16816
16816
  *
16817
16817
  * @defaultValue ["typescript"]
16818
16818
  */
16819
- skip?: string[];
16819
+ skipPackages?: string[];
16820
16820
  }
16821
16821
  interface OptionsCSpell extends OptionsOverrides {
16822
16822
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.141.0",
3
+ "version": "0.142.1",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -170,7 +170,7 @@
170
170
  "chalk": "^5.4.1",
171
171
  "defu": "6.1.4",
172
172
  "eslint-config-flat-gitignore": "^2.1.0",
173
- "eslint-config-prettier": "10.0.1",
173
+ "eslint-config-prettier": "^10.0.1",
174
174
  "eslint-flat-config-utils": "^2.0.1",
175
175
  "eslint-merge-processors": "^2.0.0",
176
176
  "eslint-plugin-import-x": "^4.6.1",