@nx/eslint 20.2.0-canary.20241205-15060e3 → 20.2.0-rc.0

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/eslint",
3
- "version": "20.2.0-canary.20241205-15060e3",
3
+ "version": "20.2.0-rc.0",
4
4
  "private": false,
5
5
  "description": "The ESLint plugin for Nx contains executors, generators and utilities used for linting JavaScript/TypeScript projects within an Nx workspace.",
6
6
  "repository": {
@@ -35,8 +35,8 @@
35
35
  "eslint": "^8.0.0 || ^9.0.0"
36
36
  },
37
37
  "dependencies": {
38
- "@nx/devkit": "20.2.0-canary.20241205-15060e3",
39
- "@nx/js": "20.2.0-canary.20241205-15060e3",
38
+ "@nx/devkit": "20.2.0-rc.0",
39
+ "@nx/js": "20.2.0-rc.0",
40
40
  "semver": "^7.5.3",
41
41
  "tslib": "^2.3.0",
42
42
  "typescript": "~5.6.2"
@@ -64,7 +64,7 @@ function findAllBlocks(source) {
64
64
  }
65
65
  function isOverride(node) {
66
66
  return ((ts.isObjectLiteralExpression(node) &&
67
- node.properties.some((p) => p.name.getText() === 'files')) ||
67
+ node.properties.some((p) => p.name.getText() === 'files' || p.name.getText() === '"files"')) ||
68
68
  // detect ...compat.config(...).map(...)
69
69
  (ts.isSpreadElement(node) &&
70
70
  ts.isCallExpression(node.expression) &&