mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 11:10:48 +00:00
33 lines
951 B
JSON
33 lines
951 B
JSON
{
|
|
"name": "ini",
|
|
"version": "0.1.0",
|
|
"publisher": "vscode",
|
|
"engines": { "vscode": "*" },
|
|
"scripts": {
|
|
"update-grammar": "node ../../build/npm/update-grammar.js textmate/ini.tmbundle Syntaxes/Ini.plist ./syntaxes/ini.tmLanguage.json"
|
|
},
|
|
"contributes": {
|
|
"languages": [{
|
|
"id": "ini",
|
|
"extensions": [ ".ini"],
|
|
"aliases": [ "Ini", "ini" ],
|
|
"configuration": "./ini.language-configuration.json"
|
|
},
|
|
{
|
|
"id": "properties",
|
|
"extensions": [ ".properties", ".gitconfig", ".cfg", ".conf" ],
|
|
"filenames": [ "config", ".gitattributes", ".gitconfig", "gitconfig", ".editorconfig" ],
|
|
"aliases": [ "Properties", "properties" ],
|
|
"configuration": "./properties.language-configuration.json"
|
|
}],
|
|
"grammars": [{
|
|
"language": "ini",
|
|
"scopeName": "source.ini",
|
|
"path": "./syntaxes/ini.tmLanguage.json"
|
|
},{
|
|
"language": "properties",
|
|
"scopeName": "source.ini",
|
|
"path": "./syntaxes/ini.tmLanguage.json"
|
|
}]
|
|
}
|
|
}
|