diff --git a/.gitignore b/.gitignore index ac5f6a7..af3f2e0 100644 --- a/.gitignore +++ b/.gitignore @@ -22,5 +22,4 @@ yarn-error.log* yarn.lock *.log package-lock.json -/.vscode .eslintcache diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..2feae02 --- /dev/null +++ b/.vscode/launch.json @@ -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}" + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 0489027..8507475 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -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 }