tasks.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Push code",
  6. "type": "shell",
  7. "command": "${workspaceFolder}/.vscode/push.sh ${workspaceFolder}",
  8. "presentation": {
  9. "echo": true,
  10. "reveal": "always",
  11. "focus": false,
  12. "panel": "shared",
  13. "showReuseMessage": false,
  14. "clear": true
  15. },
  16. "group": {
  17. "kind": "build",
  18. "isDefault": true
  19. },
  20. "problemMatcher": []
  21. },
  22. {
  23. "label": "Set mode: TDD",
  24. "type": "shell",
  25. "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tdd",
  26. "presentation": {
  27. "echo": true,
  28. "reveal": "always",
  29. "focus": false,
  30. "panel": "shared",
  31. "showReuseMessage": false,
  32. "clear": true
  33. },
  34. "problemMatcher": []
  35. },
  36. {
  37. "label": "Set mode: TCR",
  38. "type": "shell",
  39. "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tcr",
  40. "presentation": {
  41. "echo": true,
  42. "reveal": "always",
  43. "focus": false,
  44. "panel": "shared",
  45. "showReuseMessage": false,
  46. "clear": true
  47. },
  48. "problemMatcher": []
  49. },
  50. {
  51. "label": "Set mode: TCR-Hard",
  52. "type": "shell",
  53. "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} tcr-hard",
  54. "presentation": {
  55. "echo": true,
  56. "reveal": "always",
  57. "focus": false,
  58. "panel": "shared",
  59. "showReuseMessage": false,
  60. "clear": true
  61. },
  62. "problemMatcher": []
  63. },
  64. {
  65. "label": "Set mode: normal",
  66. "type": "shell",
  67. "command": "${workspaceFolder}/.vscode/changeMode.sh ${workspaceFolder} normal",
  68. "presentation": {
  69. "echo": true,
  70. "reveal": "always",
  71. "focus": false,
  72. "panel": "shared",
  73. "showReuseMessage": false,
  74. "clear": true
  75. }
  76. }
  77. ]
  78. }