Skip to content

Commit

Permalink
feat: bump minimum supported eslint version to 7.20.0
Browse files Browse the repository at this point in the history
Certain features within ESLint 7.20.0 (released Feb 2021) are required for angular-eslint

BREAKING CHANGE: Your installed version of ESLint must be version 7.20.0 or later (naturally we
recommend the latest v8 of ESLint if possible)

fixes #662
  • Loading branch information
JamesHenry committed Nov 17, 2022
1 parent 19dd177 commit 56ad69f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions README.md
Expand Up @@ -72,6 +72,12 @@ For an understanding of Angular CLI version support prior to v12, please see [./

<br>

## Supported ESLint Versions

See the specified peerDependency in any of our packages, such as the `eslint-plugin`: https://github.com/angular-eslint/angular-eslint/blob/main/packages/eslint-plugin/package.json

<br>

## Usage with Nx Monorepos

Nx leans on some, _but not all_ of the packages from this project.
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/package.json
Expand Up @@ -19,7 +19,7 @@
],
"builders": "./builders.json",
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-template/package.json
Expand Up @@ -28,7 +28,7 @@
"@types/aria-query": "5.0.1"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Expand Up @@ -21,7 +21,7 @@
"@typescript-eslint/utils": "5.43.0"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
Expand Down
2 changes: 1 addition & 1 deletion packages/integration-tests/package.json
Expand Up @@ -3,7 +3,7 @@
"version": "14.3.0",
"private": true,
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/template-parser/package.json
Expand Up @@ -21,7 +21,7 @@
"eslint-scope": "^7.0.0"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"gitHead": "e2006e5e9c99e5a943d1a999e0efa5247d29ec24"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Expand Up @@ -11,7 +11,7 @@
"LICENSE"
],
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0",
"eslint": "^7.20.0 || ^8.0.0",
"typescript": "*"
},
"dependencies": {
Expand Down

0 comments on commit 56ad69f

Please sign in to comment.