Created
May 10, 2021 09:54
-
-
Save przeprogramowani/5ba41bf7f44811181e82773c6ee2a4ec to your computer and use it in GitHub Desktop.
VS Code configuration for ESLint's format and fix on save
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "editor.defaultFormatter": "dbaeumer.vscode-eslint", | |
| "eslint.format.enable": true, | |
| "eslint.lintTask.enable": true, | |
| "eslint.alwaysShowStatus": true, | |
| "eslint.validate": [ | |
| "javascript", | |
| "html" | |
| ], | |
| "editor.formatOnSave": true, | |
| "editor.codeActionsOnSave": { | |
| "source.fixAll.eslint": true, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment