Skip to content

Commit ac408ba

Browse files
committed
format
1 parent 4018c6d commit ac408ba

File tree

1 file changed

+26
-55
lines changed

1 file changed

+26
-55
lines changed

package.json

Lines changed: 26 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
"engines": {
99
"vscode": "^1.33.0"
1010
},
11-
"keywords": [
12-
"language",
13-
"haskell",
14-
"lsp",
15-
"multi-root ready"
16-
],
11+
"keywords": ["language", "haskell", "lsp", "multi-root ready"],
1712
"homepage": "https://github.com/alanz/vscode-hie-server",
1813
"repository": {
1914
"type": "git",
@@ -22,43 +17,25 @@
2217
"bugs": {
2318
"url": "https://github.com/alanz/vscode-hie-server/issues"
2419
},
25-
"categories": [
26-
"Programming Languages",
27-
"Formatters",
28-
"Linters",
29-
"Other"
30-
],
20+
"categories": ["Programming Languages", "Formatters", "Linters", "Other"],
3121
"icon": "images/HIE_logo_128.png",
3222
"galleryBanner": {
3323
"color": "#22172A",
3424
"theme": "dark"
3525
},
36-
"activationEvents": [
37-
"onLanguage:haskell",
38-
"onLanguage:literate haskell"
39-
],
40-
"main": "./dist/extension",
26+
"activationEvents": ["onLanguage:haskell", "onLanguage:literate haskell"],
27+
"main": "./out/src/extension",
4128
"contributes": {
4229
"languages": [
4330
{
4431
"id": "haskell",
45-
"aliases": [
46-
"Haskell",
47-
"haskell"
48-
],
49-
"extensions": [
50-
".hs"
51-
]
32+
"aliases": ["Haskell", "haskell"],
33+
"extensions": [".hs"]
5234
},
5335
{
5436
"id": "literate haskell",
55-
"aliases": [
56-
"Literate Haskell",
57-
"literate Haskell"
58-
],
59-
"extensions": [
60-
".lhs"
61-
]
37+
"aliases": ["Literate Haskell", "literate Haskell"],
38+
"extensions": [".lhs"]
6239
}
6340
],
6441
"configuration": {
@@ -82,7 +59,8 @@
8259
"scope": "resource",
8360
"type": "boolean",
8461
"default": true,
85-
"description": "Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
62+
"description":
63+
"Compute diagnostics continuously as you type. Turn off to only generate diagnostics on file save."
8664
},
8765
"languageServerHaskell.liquidOn": {
8866
"scope": "resource",
@@ -106,56 +84,50 @@
10684
"languageServerHaskell.formattingProvider": {
10785
"scope": "resource",
10886
"type": "string",
109-
"enum": [
110-
"brittany",
111-
"floskell",
112-
"none"
113-
],
87+
"enum": ["brittany", "floskell", "none"],
11488
"default": "brittany",
11589
"description": "The tool to use for formatting requests."
11690
},
11791
"languageServerHaskell.hieExecutablePath": {
11892
"scope": "resource",
11993
"type": "string",
12094
"default": "",
121-
"description": "Set the path to your hie executable, if it's not already on your $PATH. Works with ~, ${HOME} and ${workspaceFolder}."
95+
"description":
96+
"Set the path to your hie executable, if it's not already on your $PATH. Works with ~, ${HOME} and ${workspaceFolder}."
12297
},
12398
"languageServerHaskell.useCustomHieWrapper": {
12499
"scope": "resource",
125100
"type": "boolean",
126101
"default": false,
127-
"description": "Use your own custom wrapper for hie (remember to specify the path!). This will take precedence over useHieWrapper and hieExecutablePath."
102+
"description":
103+
"Use your own custom wrapper for hie (remember to specify the path!). This will take precedence over useHieWrapper and hieExecutablePath."
128104
},
129105
"languageServerHaskell.useCustomHieWrapperPath": {
130106
"scope": "resource",
131107
"type": "string",
132108
"default": "",
133-
"description": "Specify the full path to your own custom hie wrapper (e.g. ${HOME}/.hie-wrapper.sh). Works with ~, ${HOME} and ${workspaceFolder}."
109+
"description":
110+
"Specify the full path to your own custom hie wrapper (e.g. ${HOME}/.hie-wrapper.sh). Works with ~, ${HOME} and ${workspaceFolder}."
134111
},
135112
"languageServerHaskell.showTypeForSelection.onHover": {
136113
"scope": "resource",
137114
"type": "boolean",
138115
"default": true,
139-
"description": "If true, when an expression is selected, the hover tooltip will attempt to display the type of the entire expression - rather than just the term under the cursor."
116+
"description":
117+
"If true, when an expression is selected, the hover tooltip will attempt to display the type of the entire expression - rather than just the term under the cursor."
140118
},
141119
"languageServerHaskell.showTypeForSelection.command.location": {
142120
"scope": "resource",
143121
"type": "string",
144-
"enum": [
145-
"dropdown",
146-
"channel"
147-
],
122+
"enum": ["dropdown", "channel"],
148123
"default": "dropdown",
149-
"description": "Determines where the type information for selected text will be shown when the `showType` command is triggered (distinct from automatically showing this information when hover is triggered).\ndropdown: in a dropdown\nchannel: will be revealed in an output channel"
124+
"description":
125+
"Determines where the type information for selected text will be shown when the `showType` command is triggered (distinct from automatically showing this information when hover is triggered).\ndropdown: in a dropdown\nchannel: will be revealed in an output channel"
150126
},
151127
"languageServerHaskell.trace.server": {
152128
"scope": "resource",
153129
"type": "string",
154-
"enum": [
155-
"off",
156-
"messages",
157-
"verbose"
158-
],
130+
"enum": ["off", "messages", "verbose"],
159131
"default": "off",
160132
"description": "Traces the communication between VSCode and the languageServerHaskell service."
161133
},
@@ -247,7 +219,8 @@
247219
"tslint": "tslint -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'",
248220
"tslint-fix": "tslint --fix -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'",
249221
"precommit": "pretty-quick --staged",
250-
"push-tag": "git tag -a $npm_package_version -m \"Version $npm_package_version\" && git push origin $npm_package_version"
222+
"push-tag":
223+
"git tag -a $npm_package_version -m \"Version $npm_package_version\" && git push origin $npm_package_version"
251224
},
252225
"devDependencies": {
253226
"@types/cheerio": "^0.22.13",
@@ -268,9 +241,7 @@
268241
"webpack": "^4.38.0",
269242
"webpack-cli": "^3.3.6"
270243
},
271-
"extensionDependencies": [
272-
"justusadam.language-haskell"
273-
],
244+
"extensionDependencies": ["justusadam.language-haskell"],
274245
"dependencies": {
275246
"cheerio": "^1.0.0-rc.3",
276247
"extend": ">=3.0.2",

0 commit comments

Comments
 (0)