update workspace settings

This commit is contained in:
Chika 2021-04-15 17:36:24 +03:00
parent c7b613d48f
commit 4a2d04cfa5
3 changed files with 23 additions and 2 deletions

1
.gitignore vendored
View File

@ -22,5 +22,4 @@ yarn-error.log*
yarn.lock
*.log
package-lock.json
/.vscode
.eslintcache

15
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,15 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:80",
"webRoot": "${workspaceFolder}"
}
]
}

View File

@ -13,5 +13,12 @@
"**/bower_components": true,
"**/tmp": true
},
"explorerExclude.backup": null
"explorerExclude.backup": null,
"eslint.lintTask.enable": true,
"eslint.workingDirectories": ["./src"],
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll": true
},
"editor.formatOnSave": true
}