diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-10-24 12:47:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-24 12:47:43 +0000 |
commit | d7af40a077dc7bd86279db1e35adb23566134f6b (patch) | |
tree | 8cc8cef3e158a40283f05e2f08a559ed8a819673 | |
parent | d392c78fbafefeea8cbb64d9db2c369f2d509a82 (diff) | |
parent | 6ff4937e8894f8614970752a7ff5b9acc32a5ea8 (diff) |
Merge pull request #285 from themoeway/vscode-auto-eslint23.10.24.0
Auto-eslint in vscode
-rw-r--r-- | .vscode/settings.json | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/.vscode/settings.json b/.vscode/settings.json index 903c74ae..d3738141 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,7 @@ { - "markdown.extension.toc.levels": "1..3" -}
\ No newline at end of file + "markdown.extension.toc.levels": "1..3", + "editor.codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "eslint.format.enable": true +} |