From 3121fcf884bf59b7867e668c3ca77ac66a814039 Mon Sep 17 00:00:00 2001 From: Jake Hiller Date: Fri, 13 Sep 2024 14:42:47 -0400 Subject: [PATCH] chore: update VSCode settings to use explicit code actions on save --- .vscode/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 649f22412..955efaf77 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -27,7 +27,7 @@ "editor.wordWrap": "wordWrapColumn", "editor.wordWrapColumn": 120, "editor.codeActionsOnSave": { - "source.fixAll": true + "source.fixAll": "explicit" } }, "search.exclude": { @@ -35,6 +35,6 @@ }, "typescript.tsdk": "node_modules/typescript/lib", "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" } }