From d7c08857cd53d8122214e2ae2d97580b475e804a Mon Sep 17 00:00:00 2001 From: Pine Wu Date: Tue, 9 Oct 2018 11:39:59 -0700 Subject: [PATCH] Remove unused top level configs --- .vscode/launch.json | 114 ------------------------------------------ .vscode/settings.json | 12 +---- .vscode/tasks.json | 97 ----------------------------------- 3 files changed, 2 insertions(+), 221 deletions(-) delete mode 100644 .vscode/launch.json delete mode 100644 .vscode/tasks.json diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 346d11fd..00000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,114 +0,0 @@ -// A launch configuration that compiles the extension and then opens it inside a new window -{ - "version": "0.1.0", - "configurations": [ - { - "name": "Launch Completions Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/completions-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/completions-sample/out/**/*.js" - ], - "preLaunchTask": "compile-completions" - }, - { - "name": "Launch Decorator Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/decorator-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/decorator-sample/out/**/*.js" - ], - "preLaunchTask": "compile-decorator" - }, - { - "name": "Launch Preview Html Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/previewhtml-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/previewhtml-sample/out/**/*.js" - ], - "preLaunchTask": "compile-previewhtml" - }, - { - "name": "Launch Content Provider Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/contentprovider-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/contentprovider-sample/out/**/*.js" - ], - "preLaunchTask": "compile-contentprovider" - }, - { - "name": "Launch Status Bar Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/statusbar-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/statusbar-sample/out/**/*.js" - ], - "preLaunchTask": "compile-statusbar" - }, - { - "name": "Launch Language Provider Sample", - "type": "extensionHost", - "request": "launch", - "runtimeExecutable": "${execPath}", - "args": [ - "--extensionDevelopmentPath=${workspaceRoot}/languageprovider-sample" - ], - "stopOnEntry": false, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/languageprovider-sample/client/out/**/*.js" - ] - }, - { - "name": "Attach Language Provider Sample Server", - "type": "node", - "request": "attach", - "port": 6004, - "sourceMaps": true, - "outFiles": [ - "${workspaceRoot}/languageprovider-sample/server/out/**/*.js" - ] - } - ], - "compounds": [ - { - "name": "Launch Language Provider Sample & Attach to Server", - "configurations": [ - "Launch Language Provider Sample", - "Attach Language Provider Sample Server" - ] - } - ] -} diff --git a/.vscode/settings.json b/.vscode/settings.json index 1f012db6..e46111f1 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,3 @@ { - "files.exclude": { - "**/out": false // set this to true to hide the "out" folder with the compiled JS files - }, - "search.exclude": { - "**/out": true - }, - "editor.formatOnSave": true, - "editor.useTabStops": true, - "prettier.useTabs": true -} + "editor.insertSpaces": false +} \ No newline at end of file diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index e34a370a..00000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,97 +0,0 @@ -// Available variables which can be used inside of strings. -// ${workspaceRoot}: the root folder of the team -// ${file}: the current opened file -// ${fileBasename}: the current opened file's basename -// ${fileDirname}: the current opened file's dirname -// ${fileExtname}: the current opened file's extension -// ${cwd}: the current working directory of the spawned process -// A task runner that calls a custom npm script that compiles the extension. -{ - "version": "2.0.0", - "tasks": [ - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-completions", - "label": "compile-completions", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - }, - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-decorator", - "label": "compile-decorator", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - }, - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-previewhtml", - "label": "compile-previewhtml", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - }, - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-statusbar", - "label": "compile-statusbar", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - }, - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-contentprovider", - "label": "compile-contentprovider", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - }, - { - "type": "shell", - // in package.json we have a compile task for each example - "command": "npm run compile-languageprovider", - "label": "compile-languageprovider", - // show the output window only if unrecognized errors occur. - "presentation": { - "reveal": "silent" - }, - // The tsc compiler is started in watching mode - "isBackground": true, - // use the standard tsc in watch mode problem matcher to find compile problems in the output. - "problemMatcher": "$tsc-watch" - } - ] -} \ No newline at end of file