Skip to content

Commit

Permalink
feat: stop compose format due to compose-language-service settings
Browse files Browse the repository at this point in the history
  • Loading branch information
guitarrapc committed Dec 23, 2021
1 parent 033c986 commit 0f610e3
Showing 1 changed file with 12 additions and 10 deletions.
22 changes: 12 additions & 10 deletions home/AppData/Roaming/Code/User/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"editor.linkedEditing": true,
"editor.renderControlCharacters": true,
"editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"explorer.confirmDragAndDrop": false,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
Expand All @@ -34,24 +35,25 @@
"workbench.list.smoothScrolling": true,
"workbench.tree.indent": 12,
"workbench.tree.renderIndentGuides": "always",
"[dockercompose]": {
// wait for vscode-docker 1.19 https://github.com/microsoft/vscode-docker/pull/3357
// due to compose-laguage-service internal settings. https://github.com/microsoft/compose-language-service/issues/70
"editor.formatOnSave": false,
"editor.tabSize": 4,
},
"[json]": {
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"editor.tabSize": 2
},
"[jsonc]": {
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"editor.tabSize": 2
},
"[terraform]": {
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"editor.formatOnSave": true
},
"[yaml]": {
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"editor.tabSize": 2
},
"[yml]": {
"editor.tabSize": 2,
"files.insertFinalNewline": true,
"editor.tabSize": 2
}
}

0 comments on commit 0f610e3

Please sign in to comment.