{ "version": "2.0.0", "tasks": [ { "label": "Check File Length", "type": "shell", "command": "node", "args": [ "${workspaceFolder}/checkLength.js", "${file}" ], "group": { "kind": "none", "isDefault": true }, "presentation": { "reveal": "never", "echo": false, "focus": false, "panel": "shared" }, "problemMatcher": { "owner": "custom", "pattern": { "regexp": "^(.+):(\\d+):(\\d+):(error|warning):(.+)$", "file": 1, "line": 2, "column": 3, "severity": 4, "message": 5 } }, "options": { "include": [ "**/*.txt" ] } } ] }