@storm-software/eslint 0.133.1 → 0.134.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.133.0-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.133.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.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { Linter } from 'eslint';
2
2
  import { FlatConfigComposer } from 'eslint-flat-config-utils';
3
- import { O as OptionsConfig, R as RuleOptions, T as TypedFlatConfigItem, A as Awaitable, C as ConfigNames } from './types-DFxU53F5.js';
3
+ import { O as OptionsConfig, R as RuleOptions, T as TypedFlatConfigItem, A as Awaitable, C as ConfigNames } from './types-DoAVTMEw.js';
4
4
  import '@nx/eslint-plugin/src/utils/runtime-lint-utils';
5
5
  import '@stylistic/eslint-plugin';
6
6
  import '@typescript-eslint/parser';
package/dist/preset.js CHANGED
@@ -2575,7 +2575,7 @@ __name(node, "node");
2575
2575
  // src/configs/nx.ts
2576
2576
  import defu3 from "defu";
2577
2577
  async function nx(options = {}) {
2578
- const { depsCheck, moduleBoundaries } = options;
2578
+ const { depsCheck, moduleBoundaries, ignoredDependencies = [], ignoredFiles = [], checkObsoleteDependencies = true } = options;
2579
2579
  return [
2580
2580
  {
2581
2581
  name: "storm/nx/setup",
@@ -2606,10 +2606,10 @@ async function nx(options = {}) {
2606
2606
  "build-base",
2607
2607
  "build"
2608
2608
  ],
2609
- ignoredDependencies: [],
2610
- ignoredFiles: [],
2609
+ ignoredDependencies,
2610
+ ignoredFiles,
2611
2611
  checkMissingDependencies: true,
2612
- checkObsoleteDependencies: false,
2612
+ checkObsoleteDependencies,
2613
2613
  checkVersionMismatches: true,
2614
2614
  includeTransitiveDependencies: false,
2615
2615
  useLocalPathsForWorkspaceDependencies: true
@@ -16684,8 +16684,23 @@ interface OptionsNxEnforceModuleBoundaries extends OptionsOverrides {
16684
16684
  checkNestedExternalImports: boolean;
16685
16685
  }
16686
16686
  interface OptionsNx extends OptionsOverrides {
16687
+ /**
16688
+ * The dependencies to not check in the `@nx/dependency-checks` rule
16689
+ */
16690
+ ignoredDependencies?: string[];
16691
+ /**
16692
+ * The files to not check in the `@nx/dependency-checks` rule
16693
+ */
16694
+ ignoredFiles?: string[];
16695
+ /**
16696
+ * Check for obsolete dependencies in the `@nx/dependency-checks` rule
16697
+ */
16698
+ checkObsoleteDependencies?: boolean;
16687
16699
  /**
16688
16700
  * Enables us to discover mismatches between dependencies specified in a project's package.json and the dependencies that your project depends on.
16701
+ *
16702
+ * @remarks
16703
+ * If any values are overridden here, the `ignoredDependencies`, `ignoredFiles`, and `checkObsoleteDependencies` options will be ignored.
16689
16704
  */
16690
16705
  depsCheck?: OptionsNxDependencyChecks | false;
16691
16706
  /**
@@ -1,5 +1,5 @@
1
1
  import { Awaitable } from 'eslint-flat-config-utils';
2
- import { T as TypedFlatConfigItem } from '../types-DFxU53F5.js';
2
+ import { T as TypedFlatConfigItem } from '../types-DoAVTMEw.js';
3
3
  import '@nx/eslint-plugin/src/utils/runtime-lint-utils';
4
4
  import '@stylistic/eslint-plugin';
5
5
  import '@typescript-eslint/parser';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.133.1",
3
+ "version": "0.134.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": {