From 7216f08de465c8104c2ca75e6c9c039f6f01ddca Mon Sep 17 00:00:00 2001 From: alperensert <63921520+alperensert@users.noreply.github.com> Date: Sun, 28 Apr 2024 14:29:10 +0300 Subject: [PATCH] chore: remove vscode settings --- .vscode/launch.json | 13 --------- .vscode/tasks.json | 69 --------------------------------------------- 2 files changed, 82 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 767f4ad..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "type": "node-terminal", - "name": "Docs develop", - "cwd": "${workspaceFolder}/docs", - "command": "yarn start", - "request": "launch", - "preLaunchTask": "yarn-start-docs" - } - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index a301dec..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - { - "label": "yarn-test-src", - "type": "shell", - "icon": { - "color": "terminal.ansiBlue", - "id": "briefcase" - }, - "command": ["yarn", "test"], - "problemMatcher": [], - "promptOnClose": true - }, - { - "label": "yarn-install-docs", - "type": "shell", - "icon": { - "color": "terminal.ansiGreen", - "id": "sync" - }, - "options": { - "cwd": "${workspaceFolder}/docs" - }, - "command": "yarn", - "args": [""], - "problemMatcher": [] - }, - { - "label": "yarn-install-src", - "type": "shell", - "icon": { - "color": "terminal.ansiGreen", - "id": "sync" - }, - "options": { - "cwd": "${workspaceFolder}" - }, - "command": "yarn", - "args": [""], - "problemMatcher": [] - }, - { - "label": "yarn-pretty-docs", - "type": "shell", - "icon": { - "id": "bell" - }, - "options": { - "cwd": "${workspaceFolder}/docs" - }, - "command": "yarn", - "args": ["pretty"], - "problemMatcher": [] - }, - { - "label": "yarn-start-docs", - "type": "shell", - "options": { - "cwd": "${workspaceFolder}/docs" - }, - "command": "yarn", - "args": ["clean"], - "promptOnClose": true, - "dependsOn": ["yarn-install-docs"], - "dependsOrder": "sequence" - } - ] -}