Skip to content

Commit 44d9024

Browse files
authored
VS Code: Remove eslint setup (#1478)
We haven't been using and enforcing the `eslint` config in the `vscode` package, plus we have been looking into `oxlint` to run on the whole TypeScript monorepo. Therefore this pull request removes the `eslint` setup specific to the `vscode` package.
1 parent c51a171 commit 44d9024

File tree

3 files changed

+50
-429
lines changed

3 files changed

+50
-429
lines changed

javascript/packages/vscode/eslint.config.mjs

Lines changed: 0 additions & 28 deletions
This file was deleted.

javascript/packages/vscode/package.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -267,17 +267,16 @@
267267
"scripts": {
268268
"vscode:prepublish": "yarn run package",
269269
"publish": "vsce publish",
270-
"build": "yarn clean && yarn sync-defaults && yarn run check-types && yarn run lint && yarn build:language-server && node esbuild.js",
270+
"build": "yarn clean && yarn sync-defaults && yarn run check-types && yarn build:language-server && node esbuild.js",
271271
"build:language-server": "cd ../language-server && yarn build && cd -",
272272
"watch": "npm-run-all -p watch:*",
273273
"watch:esbuild": "node esbuild.js --watch",
274274
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",
275-
"package": "yarn run check-types && yarn run lint && node esbuild.js --production",
275+
"package": "yarn run check-types && node esbuild.js --production",
276276
"build-tests": "tsc -p . --outDir out",
277277
"watch-tests": "tsc -p . -w --outDir out",
278-
"pretest": "yarn run build-tests && yarn run build && yarn run lint",
278+
"pretest": "yarn run build-tests && yarn run build",
279279
"check-types": "tsc --noEmit",
280-
"lint": "eslint src",
281280
"test": "if [ -z \"$DISPLAY\" ]; then xvfb-run -a yarn vscode:test; else yarn vscode:test; fi",
282281
"vscode:test": "vscode-test",
283282
"clean": "rimraf dist",
@@ -292,14 +291,11 @@
292291
"@types/mocha": "^10.0.10",
293292
"@types/node": "25.x",
294293
"@types/vscode": "^1.110.0",
295-
"@typescript-eslint/eslint-plugin": "^8.56.1",
296-
"@typescript-eslint/parser": "^8.56.1",
297294
"@vscode/test-cli": "^0.0.12",
298295
"@vscode/test-electron": "^2.5.2",
299296
"@vscode/vsce": "^3.7.1",
300297
"esbuild": "^0.27.3",
301298
"esbuild-plugin-copy": "^2.1.1",
302-
"eslint": "^10.0.0",
303299
"npm-run-all": "^4.1.5",
304300
"vscode-languageclient": "^9.0.1"
305301
}

0 commit comments

Comments
 (0)