VSCode
Last updated
Last updated
// .vscode/settings.json
{
"vitest.rootConfig": "vitest.config.ts",
"todo.colors.comment": "#FFDD87", // Comment color
"todo.colors.tags.background": ["#e54545", "#e59f45", "#e5d145", "#ae81ff"], // Special tags' background colors
"todo.colors.tags.foreground": ["#000000", "#000000", "#000000", "#000000"], // Special tags' foreground colors
"todo.tags.names": ["must", "should", "could", "won't"], // Special tags' names
"todo.file.name": "note/TODO",
"todo.file.defaultContent": "Task:\n ☐ 전체\n ☐ 요구사항 분석(문제 상황, 목표 등)\n\n ☐ 개발 전략(테스트 시나리오, 우선순위 - 후순위로 미룰게 있나?, 작업 목록 작성) \n\n ☐ 작업 목록: @must @could @should @won't\n\n ☐ 회고\n\n ☐ 추가"
}