Skip to content

Commit

Permalink
Added additional settings for devcontainer (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
gvatsal60 authored Sep 20, 2024
2 parents 2868080 + b42c675 commit eae5115
Showing 1 changed file with 34 additions and 4 deletions.
38 changes: 34 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,40 @@
"gurumukhi.selected-lines-count",
"bradzacher.vscode-copy-filename",
"PKief.material-icon-theme",
"SonarSource.sonarlint-vscode"
"SonarSource.sonarlint-vscode",
"ms-azuretools.vscode-docker"
],
"settings": {
"C_Cpp.autocompleteAddParentheses": true,
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"C_Cpp.intelliSenseEngine": "default",
"[cpp]": {
"C_Cpp.autocompleteAddParentheses": true,
"C_Cpp.codeAnalysis.clangTidy.enabled": true,
"C_Cpp.intelliSenseEngine": "default",
"editor.defaultFormatter": "ms-vscode.cpptools"
},
"[dockercompose]": {
"editor.autoIndent": "advanced",
"editor.defaultFormatter": "ms-azuretools.vscode-docker",
"editor.insertSpaces": true,
"editor.quickSuggestions": {
"comments": false,
"other": true,
"strings": true
},
"editor.tabSize": 2,
"files.eol": "\n"
},
"[dockerfile]": {
"editor.defaultFormatter": "ms-azuretools.vscode-docker",
"editor.quickSuggestions": {
"strings": true
},
"files.eol": "\n"
},
"[shellscript]": {
"editor.defaultFormatter": "foxundermoon.shell-format",
"editor.tabSize": 4,
"files.eol": "\n"
},
"editor.bracketPairColorization.enabled": true,
"editor.comments.insertSpace": true,
"editor.defaultFormatter": "esbenp.prettier-vscode",
Expand All @@ -39,13 +67,15 @@
"files.exclude": {
"**/.vscode": true
},
"remote.downloadExtensionsLocally": false,
"search.exclude": {
"**/*.code-search": true,
"**/*.git": true,
"**/*.vscode-server": true,
"**/bower_components": true,
"**/node_modules": true
},
"telemetry.telemetryLevel": "off",
"windows.title": "${folderPath}",
"workbench.iconTheme": "material-icon-theme",
"workbench.startupEditor": "none"
Expand Down

0 comments on commit eae5115

Please sign in to comment.