> 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="https://1912740209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F3GVYdZvmqQyBVq29ebqk%2Fuploads%2FxZ8CNTJdBIdm1YMfy5Kn%2F%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202025-02-10%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%2010.31.49.png?alt=media&amp;token=3ccbad0c-65ac-4033-9f81-38a01d1171dc" 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)
