diff options
| author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-15 20:32:23 -0500 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-16 01:32:23 +0000 | 
| commit | 64e4598b8cb59983fa21787550f68c562256fe67 (patch) | |
| tree | c7f627b137bd349181fffb8a52cc8a74121f2ca3 | |
| parent | c312e7a55114b913afcd85d92f2bf1006b8af246 (diff) | |
Update VSCode settings (#362)
| -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, |