From d9872d9df248b39bdb617ebe37e734d319d71472 Mon Sep 17 00:00:00 2001 From: usagizmo Date: Mon, 8 Jan 2024 08:33:44 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Use=20'explicit'=20instead=20of?= =?UTF-8?q?=20'true'=20in=20the=20configuration=20of=20'source.fixAll.esli?= =?UTF-8?q?nt'?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ref. https://code.visualstudio.com/updates/v1_85#_code-actions-on-save-and-auto --- .vscode/settings.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 2107c3cbf..8988267aa 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -9,7 +9,7 @@ "strings": true }, "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "eslint.workingDirectories": [{ "mode": "auto" }], "eslint.validate": ["svelte"]