From 3cdfceb037314e4f0e1da3cb724d3fc369aa6b1b Mon Sep 17 00:00:00 2001 From: Hornwitser Date: Fri, 14 Mar 2025 17:51:07 +0100 Subject: [PATCH] Reconfigure VsCode to not remove dead code I have no idea why this is even a thing. Removing dead code on save is stupid. --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 18647fe..8b4d39f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -6,7 +6,7 @@ "package.json": "package-lock.json, bun.lockb, pnpm*, .yarnrc*, yarn*, .eslint*, eslint*, .prettier*, prettier*" }, "editor.codeActionsOnSave": { - "source.fixAll": "explicit" + "source.fixAll.eslint": "explicit" }, "editor.detectIndentation": false, "editor.insertSpaces": false,