diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:35:04 -0500 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2023-12-03 10:35:04 -0500 |
commit | c563e5bfa5f4bded8901dccf2d589f89356574c9 (patch) | |
tree | 3eec2a05aed88e9f1ac800c146dec7bb1c6efafd /.vscode | |
parent | 1f7fe5badf829ff0a83adaf91382f4fd6b9a5098 (diff) |
Re-enable actions on save
Diffstat (limited to '.vscode')
-rw-r--r-- | .vscode/settings.json | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 734f6360..8750ff87 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,9 +1,9 @@ { "markdown.extension.toc.levels": "1..3", "editor.codeActionsOnSave": { - "source.addMissingImports": false, - "source.organizeImports": false, - "source.fixAll.eslint": false + "source.addMissingImports": true, + "source.organizeImports": true, + "source.fixAll.eslint": true }, "eslint.format.enable": true, "javascript.format.insertSpaceAfterOpeningAndBeforeClosingNonemptyBraces": false, |