Skip to content

Commit f728058

Browse files
authored
fix(linter): only depend on eslint v8 (#25938)
<!-- Please make sure you have read the submission guidelines before posting an PR --> <!-- https://github.com/nrwl/nx/blob/master/CONTRIBUTING.md#-submitting-a-pr --> <!-- Please make sure that your commit message follows our format --> <!-- Example: `fix(nx): must begin with lowercase` --> ## Current Behavior <!-- This is the behavior we have today --> `@nx/eslint` is bringing in `eslint v9` prematurely. ## Expected Behavior <!-- This is the behavior we should expect with the changes in this PR --> `@nx/eslint` should not bring in `eslint v9` yet. Though, it does have support for having `v9` installed at the workspace level. ## Related Issue(s) <!-- Please link the issue being fixed so it gets closed when this is merged. --> Fixes #25319
1 parent 253de9b commit f728058

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/eslint/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
"dependencies": {
3737
"@nx/devkit": "file:../devkit",
3838
"@nx/js": "file:../js",
39-
"eslint": "^8.0.0 || ^9.0.0",
39+
"eslint": "^8.0.0",
4040
"semver": "^7.5.3",
4141
"tslib": "^2.3.0",
4242
"typescript": "~5.4.2"

0 commit comments

Comments
 (0)