Created
April 8, 2020 02:31
-
-
Save anuragvohraec/3d155df5593cc3ef2892fa1c424dea92 to your computer and use it in GitHub Desktop.
VSCODE workspace
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
{ | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true | |
}, | |
"todo-tree.general.tags": [ | |
"BUG", | |
"HACK", | |
"FIXME", | |
"TODO", | |
"XXX", | |
"REMOVE" | |
], | |
"todo-tree.highlights.defaultHighlight": { | |
"icon": "alert", | |
"type": "text" | |
}, | |
"todo-tree.highlights.customHighlight": { | |
"TODO": { | |
"icon": "check", | |
"iconColour": "#00ff23", | |
"type": "line", | |
"foreground": "black", | |
"background" : "yellow" | |
}, | |
"FIXME": { | |
"foreground": "black", | |
"background" : "yellow", | |
"iconColour": "yellow", | |
"gutterIcon": true | |
}, | |
"REMOVE":{ | |
"icon": "x", | |
"iconColour": "red", | |
"type": "line", | |
"foreground": "black", | |
"background" : "red" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment