Last active
December 4, 2023 21:43
-
-
Save canalesb93/0423171d8d989e54aba5b3a73090cea5 to your computer and use it in GitHub Desktop.
TODOs VSCode Snippets
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
Show hidden characters
{ | |
"TODO Comment": { | |
"prefix": "todo", | |
"body": [ | |
"$LINE_COMMENT TODO: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1" | |
], | |
"description": "TODO Comment w/date" | |
}, | |
"FIXME Comment": { | |
"prefix": "fixme", | |
"body": [ | |
"$LINE_COMMENT FIXME: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1" | |
], | |
"description": "FIXME Comment w/date" | |
}, | |
"OPTIMIZE Comment": { | |
"prefix": "Optimize", | |
"body": [ | |
"$LINE_COMMENT OPTIMIZE: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1" | |
], | |
"description": "OPTIMIZE Comment w/date" | |
}, | |
"STOPSHIP Comment": { | |
"prefix": "stopship", | |
"body": [ | |
"$LINE_COMMENT STOPSHIP: $CURRENT_MONTH/$CURRENT_DATE/$CURRENT_YEAR_SHORT $1" | |
], | |
"description": "STOPSHIP Comment w/date" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment