Skip to content

Commit 9a5d14e

Browse files
committed
run prettier over extensions json files
1 parent 52f4379 commit 9a5d14e

File tree

105 files changed

+3556
-3057
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+3556
-3057
lines changed

extensions/bat/package.json

+53-27
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,55 @@
11
{
2-
"name": "bat",
3-
"displayName": "%displayName%",
4-
"description": "%description%",
5-
"version": "1.0.0",
6-
"publisher": "vscode",
7-
"license": "MIT",
8-
"engines": { "vscode": "*" },
9-
"scripts": {
10-
"update-grammar": "node ../../build/npm/update-grammar.js mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
11-
},
12-
"contributes": {
13-
"languages": [{
14-
"id": "bat",
15-
"extensions": [ ".bat", ".cmd"],
16-
"aliases": [ "Batch", "bat" ],
17-
"configuration": "./language-configuration.json"
18-
}],
19-
"grammars": [{
20-
"language": "bat",
21-
"scopeName": "source.batchfile",
22-
"path": "./syntaxes/batchfile.tmLanguage.json"
23-
}],
24-
"snippets": [{
25-
"language": "bat",
26-
"path": "./snippets/batchfile.code-snippets"
27-
}]
28-
}
2+
"name": "bat",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"version": "1.0.0",
6+
"publisher": "vscode",
7+
"license": "MIT",
8+
"engines": {
9+
"vscode": "^1.52.0"
10+
},
11+
"scripts": {
12+
"update-grammar": "vscode-grammar-updater mmims/language-batchfile grammars/batchfile.cson ./syntaxes/batchfile.tmLanguage.json"
13+
},
14+
"contributes": {
15+
"languages": [
16+
{
17+
"id": "bat",
18+
"extensions": [
19+
".bat",
20+
".cmd"
21+
],
22+
"aliases": [
23+
"Batch",
24+
"bat"
25+
],
26+
"configuration": "./language-configuration.json"
27+
}
28+
],
29+
"grammars": [
30+
{
31+
"language": "bat",
32+
"scopeName": "source.batchfile",
33+
"path": "./syntaxes/batchfile.tmLanguage.json"
34+
}
35+
],
36+
"snippets": [
37+
{
38+
"language": "bat",
39+
"path": "./snippets/batchfile.code-snippets"
40+
}
41+
]
42+
},
43+
"homepage": "https://code.visualstudio.com/",
44+
"bugs": {
45+
"url": "https://github.com/microsoft/vscode/issues"
46+
},
47+
"repository": {
48+
"type": "git",
49+
"url": "https://github.com/microsoft/vscode-bat.git"
50+
},
51+
"dependencies": {},
52+
"devDependencies": {
53+
"vscode-grammar-updater": "^1.0.2"
54+
}
2955
}

extensions/bat/package.nls.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"displayName": "Windows Bat Language Basics",
33
"description": "Provides snippets, syntax highlighting, bracket matching and folding in Windows batch files."
4-
}
4+
}

extensions/clojure/package.json

+40-24
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,41 @@
11
{
2-
"name": "clojure",
3-
"displayName": "%displayName%",
4-
"description": "%description%",
5-
"version": "1.0.0",
6-
"publisher": "vscode",
7-
"license": "MIT",
8-
"engines": { "vscode": "*" },
9-
"scripts": {
10-
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
11-
},
12-
"contributes": {
13-
"languages": [{
14-
"id": "clojure",
15-
"aliases": ["Clojure", "clojure"],
16-
"extensions": [".clj", ".cljs", ".cljc", ".cljx", ".clojure", ".edn"],
17-
"configuration": "./language-configuration.json"
18-
}],
19-
"grammars": [{
20-
"language": "clojure",
21-
"scopeName": "source.clojure",
22-
"path": "./syntaxes/clojure.tmLanguage.json"
23-
}]
24-
}
25-
}
2+
"name": "clojure",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"version": "1.0.0",
6+
"publisher": "vscode",
7+
"license": "MIT",
8+
"engines": {
9+
"vscode": "*"
10+
},
11+
"scripts": {
12+
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-clojure grammars/clojure.cson ./syntaxes/clojure.tmLanguage.json"
13+
},
14+
"contributes": {
15+
"languages": [
16+
{
17+
"id": "clojure",
18+
"aliases": [
19+
"Clojure",
20+
"clojure"
21+
],
22+
"extensions": [
23+
".clj",
24+
".cljs",
25+
".cljc",
26+
".cljx",
27+
".clojure",
28+
".edn"
29+
],
30+
"configuration": "./language-configuration.json"
31+
}
32+
],
33+
"grammars": [
34+
{
35+
"language": "clojure",
36+
"scopeName": "source.clojure",
37+
"path": "./syntaxes/clojure.tmLanguage.json"
38+
}
39+
]
40+
}
41+
}

extensions/clojure/package.nls.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"displayName": "Clojure Language Basics",
33
"description": "Provides syntax highlighting and bracket matching in Clojure files."
4-
}
4+
}

extensions/coffeescript/package.json

+48-32
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,50 @@
11
{
2-
"name": "coffeescript",
3-
"displayName": "%displayName%",
4-
"description": "%description%",
5-
"version": "1.0.0",
6-
"publisher": "vscode",
7-
"license": "MIT",
8-
"engines": { "vscode": "*" },
9-
"scripts": {
10-
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
11-
},
12-
"contributes": {
13-
"languages": [{
14-
"id": "coffeescript",
15-
"extensions": [ ".coffee", ".cson", ".iced" ],
16-
"aliases": [ "CoffeeScript", "coffeescript", "coffee" ],
17-
"configuration": "./language-configuration.json"
18-
}],
19-
"grammars": [{
20-
"language": "coffeescript",
21-
"scopeName": "source.coffee",
22-
"path": "./syntaxes/coffeescript.tmLanguage.json"
23-
}],
24-
"breakpoints": [
25-
{
26-
"language": "coffeescript"
27-
}
28-
],
29-
"snippets": [{
30-
"language": "coffeescript",
31-
"path": "./snippets/coffeescript.code-snippets"
32-
}]
33-
}
2+
"name": "coffeescript",
3+
"displayName": "%displayName%",
4+
"description": "%description%",
5+
"version": "1.0.0",
6+
"publisher": "vscode",
7+
"license": "MIT",
8+
"engines": {
9+
"vscode": "*"
10+
},
11+
"scripts": {
12+
"update-grammar": "node ../../build/npm/update-grammar.js atom/language-coffee-script grammars/coffeescript.cson ./syntaxes/coffeescript.tmLanguage.json"
13+
},
14+
"contributes": {
15+
"languages": [
16+
{
17+
"id": "coffeescript",
18+
"extensions": [
19+
".coffee",
20+
".cson",
21+
".iced"
22+
],
23+
"aliases": [
24+
"CoffeeScript",
25+
"coffeescript",
26+
"coffee"
27+
],
28+
"configuration": "./language-configuration.json"
29+
}
30+
],
31+
"grammars": [
32+
{
33+
"language": "coffeescript",
34+
"scopeName": "source.coffee",
35+
"path": "./syntaxes/coffeescript.tmLanguage.json"
36+
}
37+
],
38+
"breakpoints": [
39+
{
40+
"language": "coffeescript"
41+
}
42+
],
43+
"snippets": [
44+
{
45+
"language": "coffeescript",
46+
"path": "./snippets/coffeescript.code-snippets"
47+
}
48+
]
49+
}
3450
}
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"displayName": "Configuration Editing",
33
"description": "Provides capabilities (advanced IntelliSense, auto-fixing) in configuration files like settings, launch, and extension recommendation files."
4-
}
4+
}

0 commit comments

Comments
 (0)