Skip to content

Instantly share code, notes, and snippets.

@hidakatsuya
Created April 29, 2024 06:04
Show Gist options
  • Save hidakatsuya/d88f0c0f7ec1153d169ac7535073d644 to your computer and use it in GitHub Desktop.
Save hidakatsuya/d88f0c0f7ec1153d169ac7535073d644 to your computer and use it in GitHub Desktop.
Tasks in VSCode for Redmine development using redmined
{
"version": "2.0.0",
"tasks": [
{
"label": "rubocop -aD",
"type": "shell",
"command": "redmined bundle exec rubocop -aD ${relativeFile}",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
},
"problemMatcher": []
},
{
"label": "test",
"type": "shell",
"command": "redmined bin/rails test ${relativeFile}:${lineNumber}",
"group": "test",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "shared",
"showReuseMessage": true,
"clear": false
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment