Sha256: 32875e62e58363d9aaa5563facd6aa25da74f5853a226961aedad54fe0f11b15
Contents?: true
Size: 1.1 KB
Versions: 3
Compression:
Stored size: 1.1 KB
Contents
{ // See https://go.microsoft.com/fwlink/?LinkId=733558 // for the documentation about the tasks.json format "version": "2.0.0", "tasks": [ { "label": "build-project", "type": "shell", "group": { "kind": "build", "isDefault": true }, "options": { "cwd": "${workspaceFolder}", }, "presentation": { "clear": true }, "command": "bundle exec ruby bin/run.rb" }, { "label": "test-project", "type": "shell", "presentation": { "clear": true }, "group": { "kind": "test", "isDefault": true }, "command": "bundle exec rspec ${workspaceRoot}" }, { "label": "lint-project", "type": "shell", "presentation": { "clear": true }, "command": "/usr/bin/env rubocop ${workspaceRoot}", "problemMatcher": [] }, { "label": "lint-file", "type": "shell", "presentation": { "clear": true }, "command": "/usr/bin/env rubocop ${file}", "problemMatcher": [] } ] }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
unitf-logging-0.1.2 | .vscode/tasks.json |
unitf-logging-0.1.1 | .vscode/tasks.json |
unitf-logging-0.1.0 | .vscode/tasks.json |