32 lines
883 B
JSON
32 lines
883 B
JSON
{
|
|
"files.associations": {
|
|
"*.yml": "yaml",
|
|
"*.yaml": "yaml",
|
|
"docker-compose*.yml": "yaml",
|
|
"stack.yml": "yaml"
|
|
},
|
|
"yaml.schemas": {
|
|
"https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json": [
|
|
"docker-compose*.yml",
|
|
"**/stacks/**/stack.yml"
|
|
]
|
|
},
|
|
"yaml.format.enable": true,
|
|
"yaml.validate": true,
|
|
"editor.formatOnSave": true,
|
|
"editor.rulers": [80, 120],
|
|
"files.trimTrailingWhitespace": true,
|
|
"files.insertFinalNewline": true,
|
|
"git.autofetch": true,
|
|
"git.confirmSync": false,
|
|
"terminal.integrated.defaultProfile.windows": "PowerShell",
|
|
"[yaml]": {
|
|
"editor.insertSpaces": true,
|
|
"editor.tabSize": 2,
|
|
"editor.autoIndent": "advanced",
|
|
"editor.defaultFormatter": "redhat.vscode-yaml"
|
|
},
|
|
"[markdown]": {
|
|
"editor.defaultFormatter": "yzhang.markdown-all-in-one"
|
|
}
|
|
} |