Created
April 18, 2024 09:47
-
-
Save OleksandrKucherenko/d180336f85d4416c58cb669ccea366aa to your computer and use it in GitHub Desktop.
VsCode ToDo Tree Configuration for Unit Tests highlighting
This file contains hidden or 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
{ | |
// ... trimmed ... | |
"todo-tree.general.tags": [ | |
"BUG", | |
"HACK", | |
"FIXME", | |
"TODO", | |
"XXX", | |
"[ ]", | |
"[x]", | |
"NOTE", | |
"GIVEN", | |
"WHEN", | |
"THEN", | |
"AND" | |
], | |
"todo-tree.highlights.customHighlight": { | |
// ... trimmed ... | |
"GIVEN": { | |
"type": "text-and-comment", | |
"icon": "fold-down", | |
"gutterIcon": true, | |
"hideFromActivityBar": true, | |
"hideFromStatusBar": true, | |
"fontStyle": "italic", | |
"rulerLane": "full" | |
}, | |
"AND": { | |
"type": "text-and-comment", | |
"gutterIcon": true, | |
"background": "#969696", | |
"foreground": "#2c2c2c", | |
"fontStyle": "italic", | |
"rulerLane": "none", | |
"iconColour": "green", | |
"icon": "grabber" | |
}, | |
"WHEN": { | |
"type": "text-and-comment", | |
"gutterIcon": true, | |
"fontStyle": "italic", | |
"icon": "grabber", | |
"rulerLane": "none" | |
}, | |
"THEN": { | |
"type": "text-and-comment", | |
"gutterIcon": true, | |
"fontStyle": "italic", | |
"rulerLane": "none", | |
"icon": "fold-up" | |
} | |
} | |
// ... trimmed ... | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment