🙅

github copilotのワークスペースでの無効化方法

2024/12/30に公開

私の環境では拡張機能にワークスペースでの無効がなかったため備忘録です

以下Disucussionsに同じことを聞いている人がいました

該当Disucussions

https://github.com/orgs/community/discussions/47991

解決案

https://github.com/orgs/community/discussions/47991#discussioncomment-9199166

以下の内容を.vscode/settiongs.json内に配置することで解決できました!

{
  // other settings
  "github.copilot.editor.enableAutoCompletions": false
  // other settings
}

Discussion