52 lines
1.1 KiB
JSON
52 lines
1.1 KiB
JSON
|
{
|
||
|
"name": "clojure",
|
||
|
"displayName": "%displayName%",
|
||
|
"description": "%description%",
|
||
|
"version": "1.0.0",
|
||
|
"publisher": "vscode",
|
||
|
"license": "MIT",
|
||
|
"engines": {
|
||
|
"vscode": "*"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"update-grammar": "node ../node_modules/vscode-grammar-updater/bin atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
|
||
|
},
|
||
|
"categories": ["Programming Languages"],
|
||
|
"contributes": {
|
||
|
"languages": [
|
||
|
{
|
||
|
"id": "clojure",
|
||
|
"aliases": [
|
||
|
"Clojure",
|
||
|
"clojure"
|
||
|
],
|
||
|
"extensions": [
|
||
|
".clj",
|
||
|
".cljs",
|
||
|
".cljc",
|
||
|
".cljx",
|
||
|
".clojure",
|
||
|
".edn"
|
||
|
],
|
||
|
"configuration": "./language-configuration.json"
|
||
|
}
|
||
|
],
|
||
|
"grammars": [
|
||
|
{
|
||
|
"language": "clojure",
|
||
|
"scopeName": "source.clojure",
|
||
|
"path": "./syntaxes/clojure.tmLanguage.json"
|
||
|
}
|
||
|
],
|
||
|
"configurationDefaults": {
|
||
|
"[clojure]": {
|
||
|
"diffEditor.ignoreTrimWhitespace": false
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/microsoft/vscode.git"
|
||
|
}
|
||
|
}
|