Skip to content

Commit

Permalink
feat: drop support for ESLint v6
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
drop support for ESLint v6
  • Loading branch information
bmish committed Nov 11, 2022
1 parent 9d214ac commit 4e169a3
Show file tree
Hide file tree
Showing 12 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion packages/eslint-plugin-tslint/package.json
Expand Up @@ -42,7 +42,7 @@
"lodash": "^4.17.21"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0",
"eslint": "^7.0.0 || ^8.0.0",
"tslint": "^5.0.0 || ^6.0.0",
"typescript": "*"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin/package.json
Expand Up @@ -69,7 +69,7 @@
},
"peerDependencies": {
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
"eslint": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
Expand Down
2 changes: 1 addition & 1 deletion packages/experimental-utils/package.json
Expand Up @@ -41,7 +41,7 @@
"@typescript-eslint/utils": "5.41.0"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
"eslint": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"typescript": "*"
Expand Down
2 changes: 1 addition & 1 deletion packages/parser/package.json
Expand Up @@ -42,7 +42,7 @@
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
"eslint": "^7.0.0 || ^8.0.0"
},
"dependencies": {
"@typescript-eslint/scope-manager": "5.41.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/type-utils/package.json
Expand Up @@ -49,7 +49,7 @@
"typescript": "*"
},
"peerDependencies": {
"eslint": "*"
"eslint": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"typescript": {
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Expand Up @@ -48,7 +48,7 @@
"semver": "^7.3.7"
},
"peerDependencies": {
"eslint": "^6.0.0 || ^7.0.0 || ^8.0.0"
"eslint": "^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@typescript-eslint/parser": "5.41.0",
Expand Down
@@ -1,5 +1,5 @@
{
"devDependencies": {
"eslint": "6.0.0"
"eslint": "7.0.0"
}
}
@@ -1,6 +1,6 @@
// Jest Snapshot v1, https://goo.gl/fbAQLP

exports[`eslint-v6 should lint successfully 1`] = `
exports[`eslint-v7 should lint successfully 1`] = `
[
{
"errorCount": 1,
Expand Down
File renamed without changes.

0 comments on commit 4e169a3

Please sign in to comment.