@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
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
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-
|
|
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
|
|
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
|
/**
|
package/dist/utils/combine.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { Awaitable } from 'eslint-flat-config-utils';
|
|
2
|
-
import { T as TypedFlatConfigItem } from '../types-
|
|
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