diff options
-rw-r--r-- | .vscode/settings.json | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 66e83d21..44bef962 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -2,16 +2,16 @@ "markdown.extension.toc.levels": "1..3", "[javascript]": { "editor.codeActionsOnSave": { - "source.addMissingImports": true, - "source.organizeImports": true, - "source.fixAll.eslint": true + "source.addMissingImports": "explicit", + "source.organizeImports": "explicit", + "source.fixAll.eslint": "explicit" }, }, "[typescript]": { "editor.codeActionsOnSave": { - "source.addMissingImports": false, - "source.organizeImports": false, - "source.fixAll.eslint": true + "source.addMissingImports": "never", + "source.organizeImports": "never", + "source.fixAll.eslint": "explicit" }, }, "eslint.format.enable": true, |