move jsonc associations to configuration-editing

This commit is contained in:
Martin Aeschlimann 2018-06-06 16:37:32 +02:00
parent 0814ab46f7
commit 66c1b6d64c
2 changed files with 19 additions and 11 deletions

View file

@ -21,6 +21,25 @@
"vscode-nls": "^3.2.1"
},
"contributes": {
"languages": [
{
"id": "jsonc",
"extensions": [
".code-workspace",
"language-configuration.json",
"icon-theme.json",
"color-theme.json",
".code-snippets"
],
"filenames": [
"settings.json",
"launch.json",
"tasks.json",
"keybindings.json",
"extensions.json"
]
}
],
"jsonValidation": [
{
"fileMatch": "vscode://defaultsettings/keybindings.json",

View file

@ -45,19 +45,8 @@
"JSON with Comments"
],
"extensions": [
".code-workspace",
"language-configuration.json",
"icon-theme.json",
"color-theme.json",
".code-snippets",
".jsonc"
],
"filenames": [
"settings.json",
"launch.json",
"tasks.json",
"keybindings.json"
],
"configuration": "./language-configuration.json"
}
],