Created
April 29, 2024 06:04
-
-
Save hidakatsuya/d88f0c0f7ec1153d169ac7535073d644 to your computer and use it in GitHub Desktop.
Tasks in VSCode for Redmine development using redmined
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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