Remove tracking for .vscode folder

This commit is contained in:
benji7425 2018-07-07 20:13:57 +01:00
parent 098da23326
commit 0b4747c594
2 changed files with 3 additions and 29 deletions

14
.gitignore vendored
View File

@ -1,8 +1,9 @@
.vscode/
update.sh
guilds-data/*
token.json*
# Created by https://www.gitignore.io/api/node,visualstudiocode
# Created by https://www.gitignore.io/api/node
### Node ###
# Logs
@ -65,13 +66,4 @@ typings/
# dotenv environment variables file
.env
### VisualStudioCode ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.history
# End of https://www.gitignore.io/api/node,visualstudiocode
# End of https://www.gitignore.io/api/node

18
.vscode/launch.json vendored
View File

@ -1,18 +0,0 @@
{
// Use IntelliSense to learn about possible Node.js debug 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": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/app/index.js",
"args":[
"token.json",
"guilds.json"
]
}
]
}