-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexercism-php.code-workspace
More file actions
31 lines (27 loc) · 1008 Bytes
/
Copy pathexercism-php.code-workspace
File metadata and controls
31 lines (27 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
"folders": [
{
"path": ".",
},
],
"settings": {
// 1. Completely disable VS Code's core AI features and Copilot extensions
"chat.disableAIFeatures": true,
// 2. Disable GitHub Copilot code completions specifically
"github.completions.enabled": false,
"github.copilot.enable": {
"*": false,
"plaintext": false,
"php": false,
},
// 3. Disable PHP IntelliSense AI / advanced inline completion features
// Controls built-in suggestion types if using extensions like PHP Intelephense or PHP Tools
"php.suggest.basic": true, // Keeps standard PHP completions (non-AI)
"intelephense.completion.triggerParameterHints": true,
// Explicitly disable inline ghost text/AI completions if your PHP extension provides them
"editor.inlineSuggest.enabled": false,
// 4. Opt out of background telemetry and experiment pipelines related to AI
"telemetry.telemetryLevel": "off",
"workbench.enableExperiments": false,
},
}