@storm-software/eslint 0.27.0 → 0.28.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.
Files changed (2) hide show
  1. package/dist/preset.mjs +18 -0
  2. package/package.json +1 -1
package/dist/preset.mjs CHANGED
@@ -1381,6 +1381,24 @@ function stormPreset(options = {
1381
1381
  "@nx/workspace/valid-schema-description": "error"
1382
1382
  }
1383
1383
  },
1384
+ {
1385
+ files: ["**/package.json"],
1386
+ rules: {
1387
+ "@nx/dependency-checks": [
1388
+ "error",
1389
+ {
1390
+ buildTargets: ["build"],
1391
+ ignoredDependencies: ["typescript"],
1392
+ ignoredFiles: [],
1393
+ checkMissingDependencies: true,
1394
+ checkObsoleteDependencies: true,
1395
+ checkVersionMismatches: false,
1396
+ includeTransitiveDependencies: true,
1397
+ useLocalPathsForWorkspaceDependencies: true
1398
+ }
1399
+ ]
1400
+ }
1401
+ },
1384
1402
  // YML
1385
1403
  // https://www.npmjs.com/package/eslint-plugin-yml
1386
1404
  ...yml.configs["flat/recommended"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.27.0",
3
+ "version": "0.28.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": {