Skip to content

Commit 8cc9a1b

Browse files
committed
chore: upgrade to eslint 9
1 parent 78a0041 commit 8cc9a1b

17 files changed

+38
-342
lines changed

.eslintrc.json

-102
This file was deleted.

eslint.config.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
// @ts-check
2+
import eslint from '@eslint/js'
3+
import tslint from 'typescript-eslint'
4+
import plugin from 'eslint-plugin-eslint-plugin'
5+
6+
export default tslint.config(
7+
eslint.configs.recommended,
8+
...tslint.configs.recommended,
9+
plugin.configs['flat/recommended'],
10+
)

package.json

+3-9
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
],
4141
"scripts": {
4242
"generate": "node --loader ts-node/esm/transpile-only ./src/scripts/generate/index.ts",
43-
"lint": "ESLINT_USE_FLAT_CONFIG=false eslint . --fix",
43+
"lint": "eslint . --fix",
4444
"markdownlint": "markdownlint .",
4545
"prepare": "husky install",
4646
"spellcheck": "cspell lint --relative --no-progress '**'",
@@ -56,21 +56,14 @@
5656
"devDependencies": {
5757
"@changesets/cli": "^2.27.1",
5858
"@commitlint/config-conventional": "^19.2.2",
59+
"@eslint/js": "^9.0.0",
5960
"@masknet/config": "^0.2.1",
6061
"@types/glob": "^8.1.0",
61-
"@types/prettier": "^3.0.0",
62-
"@typescript-eslint/eslint-plugin": "^7.6.0",
63-
"@typescript-eslint/parser": "^7.6.0",
64-
"@typescript-eslint/types": "^7.6.0",
65-
"@typescript-eslint/utils": "^7.6.0",
6662
"commitlint": "^19.2.2",
6763
"cspell": "^8.7.0",
6864
"eslint": "^9.0.0",
69-
"eslint-config-prettier": "^9.1.0",
7065
"eslint-plugin-eslint-plugin": "^6.0.0",
7166
"eslint-plugin-import": "^2.29.1",
72-
"eslint-plugin-unicorn": "^52.0.0",
73-
"eslint-plugin-unused-imports": "^3.1.0",
7467
"glob": "^10.3.12",
7568
"globals": "^15.0.0",
7669
"husky": "^9.0.11",
@@ -81,6 +74,7 @@
8174
"ts-dedent": "^2.2.0",
8275
"ts-node": "^10.9.2",
8376
"typescript": "^5.4.5",
77+
"typescript-eslint": "^7.6.0",
8478
"vitest": "^1.5.0"
8579
},
8680
"peerDependencies": {

0 commit comments

Comments
 (0)