added vscode settings to project, removed ignore from gitignore for .vscode folder

This commit is contained in:
Ulf Gebhardt 2019-05-18 14:36:35 +02:00
parent 35853c049e
commit eb6a9b3034
No known key found for this signature in database
GPG Key ID: 44C888923CC8E7F3
2 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,7 +1,6 @@
.env .env
.idea .idea
*.iml *.iml
.vscode
.DS_Store .DS_Store
npm-debug.log* npm-debug.log*
yarn-debug.log* yarn-debug.log*

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

@ -0,0 +1,12 @@
{
"eslint.validate": [
"javascript",
"javascriptreact",
{
"language": "vue",
"autoFix": true
}
],
"editor.formatOnSave": false,
"eslint.autoFixOnSave": true
}