From c2db633846df241094398f63c55a8a1a5d64da8b Mon Sep 17 00:00:00 2001 From: Ken Lee Shu Ming Date: Tue, 27 Feb 2024 20:22:31 +0800 Subject: [PATCH] chore(vscode): update code actions value options (#7113) chore: update code actions value options --- .vscode/settings.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 9791ff2909..5ab2664b7d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,6 +1,6 @@ { "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "eslint.validate": ["javascript", "typescript"], "editor.formatOnSave": true, @@ -12,7 +12,7 @@ }, "[html]": { "editor.codeActionsOnSave": { - "source.fixAll.eslint": false + "source.fixAll.eslint": "never" }, "editor.defaultFormatter": "esbenp.prettier-vscode" },