Merge pull request #3731 from thornbill/vscode-fix-save

Add vscode configuration to fix issues on saving
This commit is contained in:
Bill Thornton 2022-06-29 14:41:58 -04:00 committed by GitHub
commit 8a2f0d5eef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -8,7 +8,6 @@ config.json
# ide
.idea
.vscode
# log
yarn-error.log

5
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,5 @@
{
"recommendations": [
"dbaeumer.vscode-eslint"
]
}

7
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,7 @@
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.format.enable": true,
"editor.formatOnSave": false
}