Skip to content

Commit 16b2ac3

Browse files
committed
Rebase on master
1 parent 943abd7 commit 16b2ac3

File tree

1 file changed

+24
-49
lines changed

1 file changed

+24
-49
lines changed

package.json

Lines changed: 24 additions & 49 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,7 @@
88
"engines": {
99
"vscode": "^1.22.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-
"Languages",
27-
"Formatters",
28-
"Linters",
29-
"Other"
30-
],
20+
"categories": ["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-
],
26+
"activationEvents": ["onLanguage:haskell", "onLanguage:literate haskell"],
4027
"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": {
@@ -75,25 +52,29 @@
7552
"scope": "resource",
7653
"type": "string",
7754
"default": "",
78-
"description": "Set the path to your hie executable, if it's not already on your $PATH. Works with ~, ${HOME} and ${workspaceFolder}."
55+
"description":
56+
"Set the path to your hie executable, if it's not already on your $PATH. Works with ~, ${HOME} and ${workspaceFolder}."
7957
},
8058
"languageServerHaskell.useHieWrapper": {
8159
"scope": "resource",
8260
"type": "boolean",
8361
"default": false,
84-
"description": "Try to automatically select the correct hie version, based on your projects GHC version. NOTE: Build hie using the Makefile to get all versions. This will take precedence over hieExecutablePath."
62+
"description":
63+
"Try to automatically select the correct hie version, based on your projects GHC version. NOTE: Build hie using the Makefile to get all versions. This will take precedence over hieExecutablePath."
8564
},
8665
"languageServerHaskell.useCustomHieWrapper": {
8766
"scope": "resource",
8867
"type": "boolean",
8968
"default": false,
90-
"description": "Use your own custom wrapper for hie (remember to specify the path!). This will take precedence over useHieWrapper and hieExecutablePath."
69+
"description":
70+
"Use your own custom wrapper for hie (remember to specify the path!). This will take precedence over useHieWrapper and hieExecutablePath."
9171
},
9272
"languageServerHaskell.useCustomHieWrapperPath": {
9373
"scope": "resource",
9474
"type": "string",
9575
"default": "",
96-
"description": "Specify the full path to your own custom hie wrapper (e.g. ${HOME}/.hie-wrapper.sh). Works with ~, ${HOME} and ${workspaceFolder}."
76+
"description":
77+
"Specify the full path to your own custom hie wrapper (e.g. ${HOME}/.hie-wrapper.sh). Works with ~, ${HOME} and ${workspaceFolder}."
9778
},
9879
"languageServerHaskell.hlintOn": {
9980
"scope": "resource",
@@ -105,26 +86,21 @@
10586
"scope": "resource",
10687
"type": "boolean",
10788
"default": true,
108-
"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."
89+
"description":
90+
"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."
10991
},
11092
"languageServerHaskell.showTypeForSelection.command.location": {
11193
"scope": "resource",
11294
"type": "string",
113-
"enum": [
114-
"dropdown",
115-
"channel"
116-
],
95+
"enum": ["dropdown", "channel"],
11796
"default": "dropdown",
118-
"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"
97+
"description":
98+
"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"
11999
},
120100
"languageServerHaskell.trace.server": {
121101
"scope": "resource",
122102
"type": "string",
123-
"enum": [
124-
"off",
125-
"messages",
126-
"verbose"
127-
],
103+
"enum": ["off", "messages", "verbose"],
128104
"default": "off",
129105
"description": "Traces the communication between VSCode and the languageServerHaskell service."
130106
},
@@ -206,7 +182,8 @@
206182
"tslint": "tslint -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'",
207183
"tslint-fix": "tslint --fix -p tsconfig.json -c tslint.json --format stylish 'src/**/*.ts'",
208184
"precommit": "pretty-quick --staged",
209-
"push-tag": "git tag -a $npm_package_version -m \"Version $npm_package_version\" && git push origin $npm_package_version"
185+
"push-tag":
186+
"git tag -a $npm_package_version -m \"Version $npm_package_version\" && git push origin $npm_package_version"
210187
},
211188
"devDependencies": {
212189
"@types/mocha": "^2.2.46",
@@ -218,9 +195,7 @@
218195
"typescript": "^2.8.1",
219196
"vscode": "^1.1.14"
220197
},
221-
"extensionDependencies": [
222-
"justusadam.language-haskell"
223-
],
198+
"extensionDependencies": ["justusadam.language-haskell"],
224199
"dependencies": {
225200
"vscode-languageclient": "^4.1.3"
226201
}

0 commit comments

Comments
 (0)