> For the complete documentation index, see [llms.txt](https://taewoongs-organization.gitbook.io/jtwjs-dev-wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://taewoongs-organization.gitbook.io/jtwjs-dev-wiki/dev_note/etc/vscode.md).

# VSCode

## VSCode

### ToDo

> fabiospampinato.vscode-todo-plus

<figure><img src="/files/hGZrlitAXXJjmy4VxAQH" alt=""><figcaption></figcaption></figure>

```json
// .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  ☐ 추가"
}
```

* `/note/TODO`
* [`https://github.com/dulee-dev/tdd-master-course-source/blob/main/.vscode/settings.json`](https://github.com/dulee-dev/tdd-master-course-source/blob/main/.vscode/settings.json)
