Commit 4a2eb3e
DeanLuus22021994
fix: resolve VS Code settings type error and markdown duplicate heading
VS Code Settings Fix (.vscode/settings.json line 84):
- Changed terminal.integrated.suggest.quickSuggestions from boolean to object
- Proper configuration: {other: true, comments: false, strings: true}
- Fixes JSON schema validation error (expected object, got boolean)
Markdownlint Fix (.devcontainer/README.md line 425):
- MD024: Renamed h3 'Troubleshooting' to 'Shell Integration Troubleshooting'
- Avoids duplicate heading conflict with h2 'Troubleshooting' at line 205
- Maintains clear section organization for shell integration issues
PowerShell Syntax (test-docker-stack.ps1):
- Verified with PSParser: Syntax is valid, no errors
- Line 202 try-catch structure is correct
- VS Code diagnostic is a false positive (all try blocks have catch blocks)
Note: terminal.integrated.suggest.quickSuggestions object format enables
granular control over IntelliSense suggestions in different contexts.1 parent 3357544 commit 4a2eb3e
2 files changed
+7
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
68 | 68 | | |
69 | 69 | | |
70 | 70 | | |
71 | | - | |
| 71 | + | |
72 | 72 | | |
73 | 73 | | |
74 | 74 | | |
| |||
422 | 422 | | |
423 | 423 | | |
424 | 424 | | |
425 | | - | |
| 425 | + | |
426 | 426 | | |
427 | 427 | | |
428 | 428 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
81 | 81 | | |
82 | 82 | | |
83 | 83 | | |
84 | | - | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
| 87 | + | |
| 88 | + | |
85 | 89 | | |
86 | 90 | | |
87 | 91 | | |
| |||
0 commit comments