From 8595f1f1e4ca0fabef3683ff3faae288d3cfcd9d Mon Sep 17 00:00:00 2001 From: mahakbansal2019 <53010252+mahakbansal2019@users.noreply.github.com> Date: Mon, 15 Jun 2020 20:05:15 +0530 Subject: [PATCH] Fix#16 Remove .vscode (#21) * Fix#16 Remove .vscode * Deletes .vscode --- .gitignore | 1 + .vscode/launch.json | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 4d29575d..00cd6ea2 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ # misc .DS_Store +.vscode .env.local .env.development.local .env.test.local diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 4b1147d4..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,15 +0,0 @@ -{ - // 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": "chrome", - "request": "launch", - "name": "Launch Chrome against localhost", - "url": "http://localhost:3000", - "webRoot": "${workspaceFolder}" - } - ] -}