Improve defaults for dockercompose language

The Docker Compose language will benefit from the same defaults that vanilla YAML. See https://github.com/microsoft/vscode-docker/issues/3057 for an example of customer-submitted issue illustrating this.
This commit is contained in:
Karol Zadora-Przylecki 2021-07-13 08:57:14 -07:00 committed by GitHub
parent 4308e9375b
commit 929deac3c3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -62,6 +62,11 @@
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced"
},
"[dockercompose]": {
"editor.insertSpaces": true,
"editor.tabSize": 2,
"editor.autoIndent": "advanced"
}
}
},