Leverage configurationDefaults for languages that we bundle with VS Code. Fixes #21301

This commit is contained in:
Martin Aeschlimann 2017-02-23 23:18:09 +01:00
parent 95f8b3c880
commit c04ce75d90
3 changed files with 19 additions and 3 deletions

View file

@ -17,6 +17,11 @@
"language": "go",
"scopeName": "source.go",
"path": "./syntaxes/go.json"
}]
}],
"configurationDefaults": {
"[go]": {
"editor.insertSpaces": false
}
}
}
}

View file

@ -19,6 +19,11 @@
"language": "makefile",
"scopeName": "source.makefile",
"path": "./syntaxes/Makefile.json"
}]
}],
"configurationDefaults": {
"[makefile]": {
"editor.insertSpaces": false
}
}
}
}

View file

@ -18,6 +18,12 @@
"language": "yaml",
"scopeName": "source.yaml",
"path": "./syntaxes/yaml.json"
}]
}],
"configurationDefaults": {
"[yaml]": {
"editor.insertSpaces": true,
"editor.tabSize": 2
}
}
}
}