aboutsummaryrefslogtreecommitdiff
path: root/editors/code/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'editors/code/package.json')
-rw-r--r--editors/code/package.json14
1 files changed, 8 insertions, 6 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index d54b1750a..c498c14b4 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -22,13 +22,13 @@
22 "vscode:prepublish": "tsc && rollup -c", 22 "vscode:prepublish": "tsc && rollup -c",
23 "package": "vsce package -o rust-analyzer.vsix", 23 "package": "vsce package -o rust-analyzer.vsix",
24 "watch": "tsc --watch", 24 "watch": "tsc --watch",
25 "fmt": "tsfmt -r && tslint -p tsconfig.json -c tslint.json 'src/**/*.ts' --fix" 25 "fmt": "tsfmt -r && eslint -c .eslintrc.js --ext ts ./src/ --fix"
26 }, 26 },
27 "dependencies": { 27 "dependencies": {
28 "jsonc-parser": "^2.1.0", 28 "jsonc-parser": "^2.1.0",
29 "node-fetch": "^2.6.0", 29 "node-fetch": "^2.6.0",
30 "throttle-debounce": "^2.1.0", 30 "throttle-debounce": "^2.1.0",
31 "vscode-languageclient": "^6.1.0" 31 "vscode-languageclient": "^6.1.1"
32 }, 32 },
33 "devDependencies": { 33 "devDependencies": {
34 "@rollup/plugin-commonjs": "^11.0.2", 34 "@rollup/plugin-commonjs": "^11.0.2",
@@ -37,9 +37,11 @@
37 "@types/node-fetch": "^2.5.4", 37 "@types/node-fetch": "^2.5.4",
38 "@types/throttle-debounce": "^2.1.0", 38 "@types/throttle-debounce": "^2.1.0",
39 "@types/vscode": "^1.42.0", 39 "@types/vscode": "^1.42.0",
40 "@typescript-eslint/eslint-plugin": "^2.20.0",
41 "@typescript-eslint/parser": "^2.20.0",
42 "eslint": "^6.8.0",
40 "rollup": "^1.31.1", 43 "rollup": "^1.31.1",
41 "tslib": "^1.10.0", 44 "tslib": "^1.10.0",
42 "tslint": "^5.20.1",
43 "typescript": "^3.7.5", 45 "typescript": "^3.7.5",
44 "typescript-formatter": "^7.2.2", 46 "typescript-formatter": "^7.2.2",
45 "vsce": "^1.73.0" 47 "vsce": "^1.73.0"
@@ -177,13 +179,13 @@
177 "default": {}, 179 "default": {},
178 "description": "Fine grained feature flags to disable annoying features" 180 "description": "Fine grained feature flags to disable annoying features"
179 }, 181 },
180 "rust-analyzer.raLspServerPath": { 182 "rust-analyzer.serverPath": {
181 "type": [ 183 "type": [
182 "null", 184 "null",
183 "string" 185 "string"
184 ], 186 ],
185 "default": null, 187 "default": null,
186 "description": "Path to ra_lsp_server executable (points to bundled binary by default)" 188 "description": "Path to rust-analyzer executable (points to bundled binary by default)"
187 }, 189 },
188 "rust-analyzer.excludeGlobs": { 190 "rust-analyzer.excludeGlobs": {
189 "type": "array", 191 "type": "array",
@@ -243,7 +245,7 @@
243 "Full log" 245 "Full log"
244 ], 246 ],
245 "default": "off", 247 "default": "off",
246 "description": "Trace requests to the ra_lsp_server" 248 "description": "Trace requests to the rust-analyzer"
247 }, 249 },
248 "rust-analyzer.lruCapacity": { 250 "rust-analyzer.lruCapacity": {
249 "type": [ 251 "type": [