いつもVSCodeにインストールする拡張機能や設定方法をまとめる。

いつもインストールする拡張機能

  • C/C++
  • Python
  • Remote - SSH
  • Dev Containers
  • Code Spell Checker
  • GitHub Copilot
  • Ruff

いつも設定するsetting.json

{
    "editor.wordWrap": "on",
    "editor.stickyTabStops": true,
    "editor.formatOnSave": true,
"[python]": { "editor.defaultFormatter": "charliermarsh.ruff", "editor.formatOnSave": true }, "ruff.lineLength": 320, "github.copilot.nextEditSuggestions.enabled": true, }
Ad.