Remove personal .vscode/ from repository

This commit is contained in:
Sam Vervaeck 2020-06-07 22:26:06 +02:00
parent 3f599cc13c
commit 79d8f4b41b
2 changed files with 3 additions and 24 deletions

6
.gitignore vendored
View file

@ -1,10 +1,10 @@
# IDEs
.vscode/
# npm # npm
node_modules/ node_modules/
# tsc
lib/
# bolt # bolt
.bolt-work/ .bolt-work/

21
.vscode/launch.json vendored
View file

@ -1,21 +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": "node",
"request": "launch",
"name": "Run on Test File",
"outputCapture": "std",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js",
"${workspaceFolder}/lib/**/*.js",
"<node_internals>/**"
],
"program": "${workspaceFolder}/lib/bin/bolt.js",
"args": ["check", "stdlib"],
}
]
}