forked from microsoft/vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
run prettier over extensions json files
- Loading branch information
1 parent
52f4379
commit 9a5d14e
Showing
105 changed files
with
3,556 additions
and
3,057 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,55 @@ | ||
{ | ||
"name": "bat", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { "vscode": "*" }, | ||
"scripts": { | ||
"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json" | ||
}, | ||
"contributes": { | ||
"languages": [{ | ||
"id": "bat", | ||
"extensions": [ ".bat", ".cmd"], | ||
"aliases": [ "Batch", "bat" ], | ||
"configuration": "./language-configuration.json" | ||
}], | ||
"grammars": [{ | ||
"language": "bat", | ||
"scopeName": "source.batchfile", | ||
"path": "./syntaxes/batchfile.tmLanguage.json" | ||
}], | ||
"snippets": [{ | ||
"language": "bat", | ||
"path": "./snippets/batchfile.code-snippets" | ||
}] | ||
} | ||
"name": "bat", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "^1.52.0" | ||
}, | ||
"scripts": { | ||
"update-grammar": "vscode-grammar-updater mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json" | ||
}, | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "bat", | ||
"extensions": [ | ||
".bat", | ||
".cmd" | ||
], | ||
"aliases": [ | ||
"Batch", | ||
"bat" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "bat", | ||
"scopeName": "source.batchfile", | ||
"path": "./syntaxes/batchfile.tmLanguage.json" | ||
} | ||
], | ||
"snippets": [ | ||
{ | ||
"language": "bat", | ||
"path": "./snippets/batchfile.code-snippets" | ||
} | ||
] | ||
}, | ||
"homepage": "https://code.visualstudio.com/", | ||
"bugs": { | ||
"url": "https://github.com/microsoft/vscode/issues" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/microsoft/vscode-bat.git" | ||
}, | ||
"dependencies": {}, | ||
"devDependencies": { | ||
"vscode-grammar-updater": "^1.0.2" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"displayName": "Windows Bat Language Basics", | ||
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Windows batch files." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,41 @@ | ||
{ | ||
"name": "clojure", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { "vscode": "*" }, | ||
"scripts": { | ||
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json" | ||
}, | ||
"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" | ||
}] | ||
} | ||
} | ||
"name": "clojure", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "*" | ||
}, | ||
"scripts": { | ||
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json" | ||
}, | ||
"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" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"displayName": "Clojure Language Basics", | ||
"description": "Provides syntax highlighting and bracket matching in Clojure files." | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,50 @@ | ||
{ | ||
"name": "coffeescript", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { "vscode": "*" }, | ||
"scripts": { | ||
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json" | ||
}, | ||
"contributes": { | ||
"languages": [{ | ||
"id": "coffeescript", | ||
"extensions": [ ".coffee", ".cson", ".iced" ], | ||
"aliases": [ "CoffeeScript", "coffeescript", "coffee" ], | ||
"configuration": "./language-configuration.json" | ||
}], | ||
"grammars": [{ | ||
"language": "coffeescript", | ||
"scopeName": "source.coffee", | ||
"path": "./syntaxes/coffeescript.tmLanguage.json" | ||
}], | ||
"breakpoints": [ | ||
{ | ||
"language": "coffeescript" | ||
} | ||
], | ||
"snippets": [{ | ||
"language": "coffeescript", | ||
"path": "./snippets/coffeescript.code-snippets" | ||
}] | ||
} | ||
"name": "coffeescript", | ||
"displayName": "%displayName%", | ||
"description": "%description%", | ||
"version": "1.0.0", | ||
"publisher": "vscode", | ||
"license": "MIT", | ||
"engines": { | ||
"vscode": "*" | ||
}, | ||
"scripts": { | ||
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json" | ||
}, | ||
"contributes": { | ||
"languages": [ | ||
{ | ||
"id": "coffeescript", | ||
"extensions": [ | ||
".coffee", | ||
".cson", | ||
".iced" | ||
], | ||
"aliases": [ | ||
"CoffeeScript", | ||
"coffeescript", | ||
"coffee" | ||
], | ||
"configuration": "./language-configuration.json" | ||
} | ||
], | ||
"grammars": [ | ||
{ | ||
"language": "coffeescript", | ||
"scopeName": "source.coffee", | ||
"path": "./syntaxes/coffeescript.tmLanguage.json" | ||
} | ||
], | ||
"breakpoints": [ | ||
{ | ||
"language": "coffeescript" | ||
} | ||
], | ||
"snippets": [ | ||
{ | ||
"language": "coffeescript", | ||
"path": "./snippets/coffeescript.code-snippets" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
{ | ||
"displayName": "Configuration Editing", | ||
"description": "Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files." | ||
} | ||
} |
Oops, something went wrong.