aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2021-01-26 13:18:01 +0000
committerAleksey Kladov <[email protected]>2021-01-26 13:45:54 +0000
commit2870e701630c198bafb346e5a9c91c1d2fc9f092 (patch)
treecf85185c893a344bbfe29e48fcf856b630a06ec5 /editors
parenta733f65126451784c8b158d6c6318b556d68ebfc (diff)
Add config option to ignore directories
Diffstat (limited to 'editors')
-rw-r--r--editors/code/package.json8
1 files changed, 8 insertions, 0 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index ee54638f1..66af94186 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -555,6 +555,14 @@
555 "default": "client", 555 "default": "client",
556 "type": "string" 556 "type": "string"
557 }, 557 },
558 "rust-analyzer.files.excludeDirs": {
559 "markdownDescription": "These directories will be ignored by rust-analyzer.",
560 "default": [],
561 "type": "array",
562 "items": {
563 "type": "string"
564 }
565 },
558 "rust-analyzer.hoverActions.debug": { 566 "rust-analyzer.hoverActions.debug": {
559 "markdownDescription": "Whether to show `Debug` action. Only applies when `#rust-analyzer.hoverActions.enable#` is set.", 567 "markdownDescription": "Whether to show `Debug` action. Only applies when `#rust-analyzer.hoverActions.enable#` is set.",
560 "default": true, 568 "default": true,