File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11node_modules
22.DS_Store
3- .vscode
4- ** /.DS_Store
3+ ** /.DS_Store
4+ .vscode /*
5+ ! .vscode /settings.json
6+ ! .vscode /extensions.json
Original file line number Diff line number Diff line change 77 " ritwickdey.LiveServer" ,
88 " vsliveshare.vsliveshare" ,
99 " Orta.vscode-jest"
10- ]
10+ ],
11+ "unwantedRecommendations" : [" github.copilot" , " github.copilot-chat" ]
1112}
Original file line number Diff line number Diff line change 1+ {
2+ // Disable AI code suggestions (Copilot ghost text and similar)
3+ "editor.inlineSuggest.enabled" : false ,
4+ "github.copilot.enable" : { "*" : false },
5+ "github.copilot.nextEditSuggestions.enabled" : false ,
6+ "chat.commandCenter.enabled" : false ,
7+
8+ // Disable non-AI autocomplete (IntelliSense)
9+ "editor.quickSuggestions" : {
10+ "other" : false ,
11+ "comments" : false ,
12+ "strings" : false
13+ },
14+ "editor.suggestOnTriggerCharacters" : false ,
15+ "editor.wordBasedSuggestions" : " off" ,
16+ "editor.snippetSuggestions" : " none" ,
17+ "editor.tabCompletion" : " off" ,
18+ "editor.parameterHints.enabled" : false
19+ }
You can’t perform that action at this time.
0 commit comments