tasks.json 786 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "version": "2.0.0",
  3. "tasks": [
  4. {
  5. "label": "Check File Length",
  6. "type": "shell",
  7. "command": "node",
  8. "args": [
  9. "${workspaceFolder}/checkLength.js",
  10. "${file}"
  11. ],
  12. "group": {
  13. "kind": "none",
  14. "isDefault": true
  15. },
  16. "presentation": {
  17. "reveal": "never",
  18. "echo": false,
  19. "focus": false,
  20. "panel": "shared"
  21. },
  22. "problemMatcher": {
  23. "owner": "custom",
  24. "pattern": {
  25. "regexp": "^(.+):(\\d+):(\\d+):(error|warning):(.+)$",
  26. "file": 1,
  27. "line": 2,
  28. "column": 3,
  29. "severity": 4,
  30. "message": 5
  31. }
  32. },
  33. "options": {
  34. "include": [
  35. "**/*.txt"
  36. ]
  37. }
  38. }
  39. ]
  40. }