Skip to content
This repository was archived by the owner on Sep 20, 2025. It is now read-only.

Commit fbb1ff6

Browse files
committed
fix: pin version of typescript-eslint to make it compatible with eslint-config-airbnb-typescript
1 parent ccc56d7 commit fbb1ff6

File tree

4 files changed

+117
-120
lines changed

4 files changed

+117
-120
lines changed

package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
"postinstall": "is-ci || husky install",
1111
"precommit": "true"
1212
},
13+
"resolutions": {
14+
"@typescript-eslint/eslint-plugin": "^7.13.0",
15+
"@typescript-eslint/parser": "^7.13.0"
16+
},
1317
"devDependencies": {
1418
"@commitlint/cli": "^19.4.1",
1519
"@commitlint/config-conventional": "^19.4.1",

packages/eslint-config-tslint-base/package.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"name": "@chieforz/eslint-config-tslint-base",
33
"version": "1.4.1",
4-
"keywords": [
5-
"tslint",
6-
"tslint-config",
7-
"tslint config"
8-
],
4+
"keywords": ["tslint", "tslint-config", "tslint config"],
95
"repository": {
106
"type": "git",
117
"url": "https://github.com/ChiefORZ/tslint-config"
@@ -20,16 +16,14 @@
2016
"directories": {
2117
"lib": "lib"
2218
},
23-
"files": [
24-
"lib"
25-
],
19+
"files": ["lib"],
2620
"dependencies": {
2721
"@eslint/compat": "^1.1.1",
2822
"@eslint/eslintrc": "^3.1.0",
2923
"@eslint/js": "^9.10.0",
30-
"@typescript-eslint/eslint-plugin": "^8.4.0",
24+
"@typescript-eslint/eslint-plugin": "^7.13.0",
3125
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
32-
"@typescript-eslint/parser": "^8.4.0",
26+
"@typescript-eslint/parser": "^7.13.0",
3327
"eslint": "^8.57.0",
3428
"eslint-plugin-eslint-comments": "^3.2.0",
3529
"eslint-plugin-import": "^2.30.0",

packages/eslint-config-tslint-react/package.json

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"name": "@chieforz/eslint-config-tslint-react",
33
"version": "1.4.1",
4-
"keywords": [
5-
"tslint",
6-
"tslint config",
7-
"tslint-config-react"
8-
],
4+
"keywords": ["tslint", "tslint config", "tslint-config-react"],
95
"repository": {
106
"type": "git",
117
"url": "https://github.com/ChiefORZ/tslint-config-react"
@@ -20,15 +16,13 @@
2016
"directories": {
2117
"lib": "lib"
2218
},
23-
"files": [
24-
"lib"
25-
],
19+
"files": ["lib"],
2620
"dependencies": {
2721
"@eslint/compat": "^1.1.1",
2822
"@eslint/eslintrc": "^3.1.0",
2923
"@eslint/js": "^9.10.0",
30-
"@typescript-eslint/eslint-plugin": "^8.4.0",
31-
"@typescript-eslint/parser": "^8.4.0",
24+
"@typescript-eslint/eslint-plugin": "^7.13.0",
25+
"@typescript-eslint/parser": "^7.13.0",
3226
"eslint-config-airbnb": "^19.0.4",
3327
"eslint-config-airbnb-typescript": "^18.0.0",
3428
"eslint-import-resolver-typescript": "^3.6.3",

0 commit comments

Comments
 (0)