From ad7b84b85a421610e08b3b89da140e825568ac06 Mon Sep 17 00:00:00 2001 From: Nathan Leiby Date: Fri, 14 May 2021 21:05:41 -0700 Subject: [PATCH] remove vscode editor files + add to gitignore --- .gitignore | 3 +++ .vscode/launch.json | 25 ------------------------- 2 files changed, 3 insertions(+), 25 deletions(-) delete mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 43f1f59..dfbf6ad 100644 --- a/.gitignore +++ b/.gitignore @@ -11,3 +11,6 @@ release/ # microplane init creates files in the mp/ dir # let's ignore this so we don't accidentally commit debug runs to the mp repo mp/ + +# text editor files +./vscode diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index dbdc0aa..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,25 +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": [ - { - "name": "Launch", - "type": "go", - "request": "launch", - "mode": "debug", - "program": "${workspaceRoot}", - "buildFlags": "-ldflags=-X=main.version=0.0.28", - "env": { - "GITHUB_API_TOKEN":"x" - }, - "cwd": "x", - "args": [ - "sync" - ], - "port": 8080, - "host": "127.0.0.1" - } - ] -} \ No newline at end of file