diff --git a/.gitignore b/.gitignore index 21f10a095..4526e9e48 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ *.swp *~ .tmp +.vscode dist cache docs/_build diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index 33b522efe..000000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,23 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - //-- Start icestudio (npm start) - //-- Place a breakpoint in the Gruntfile - //-- Debug it! - "name": "Debug grunt", - "request": "launch", - "type": "node", - - //-- Execute: npm run start - "runtimeExecutable": "npm", - "runtimeArgs": [ - "start" - ], - "skipFiles": [ - "/**" - ], - - }, - ] -} diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index 5d972be4e..000000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,56 +0,0 @@ -{ - "version": "2.0.0", - "tasks": [ - - //-- Execute Icestudio! - { - "label": "Run Icestudio", - "detail": "npm start", - "type": "npm", - "script": "start", - "problemMatcher": [], - - }, - - //-- Build Icestudio for Linux! - { - "label": "Build Linux64", - "detail": "npm buildLinux64", - "type": "npm", - "script": "buildLinux64", - "group": "build", - "problemMatcher": [], - - }, - - //-- Build Icestudio for Windows! - { - "label": "Build Windows", - "detail": "npm buildWindows", - "type": "npm", - "script": "buildWindows", - "group": "build", - "problemMatcher": [], - - }, - - //-- Build Icestudio for Linux ARM 64 - { - "label": "Build Linux ARM 64", - "detail": "npm buildAarch64", - "type": "npm", - "script": "buildAarch64", - "group": "build", - "problemMatcher": [], - - }, - - { - "type": "grunt", - "task": "getcollection", - "problemMatcher": [], - "label": "grunt: getcollection" - }, - - ] -} \ No newline at end of file