From 3be4f9c86a59c40e5c83a7d4497f7b15cecafc94 Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Sun, 12 Mar 2023 20:52:54 -0400 Subject: [PATCH] .vscode: remove tasks.json --- .vscode/tasks.json | 50 ---------------------------------------------- 1 file changed, 50 deletions(-) delete mode 100644 .vscode/tasks.json diff --git a/.vscode/tasks.json b/.vscode/tasks.json deleted file mode 100644 index c7efda6..0000000 --- a/.vscode/tasks.json +++ /dev/null @@ -1,50 +0,0 @@ - -{ - // Automatically created by phoityne-vscode extension. - - "version": "2.0.0", - "presentation": { - "reveal": "always", - "panel": "new" - }, - "tasks": [ - { - // F7 - "group": { - "kind": "build", - "isDefault": true - }, - "label": "haskell build", - "type": "shell", - //"command": "cabal configure && cabal build" - "command": "stack build" - }, - { - // F6 - "group": "build", - "type": "shell", - "label": "haskell clean & build", - //"command": "cabal clean && cabal configure && cabal build" - "command": "stack clean && stack build" - //"command": "stack clean ; stack build" // for powershell - }, - { - // F8 - "group": { - "kind": "test", - "isDefault": true - }, - "type": "shell", - "label": "haskell test", - //"command": "cabal test" - "command": "stack test" - }, - { - // F6 - "isBackground": true, - "type": "shell", - "label": "haskell watch", - "command": "stack build --test --no-run-tests --file-watch" - } - ] -}