aboutsummaryrefslogtreecommitdiff
path: root/editors
diff options
context:
space:
mode:
authorIgor Aleksanov <[email protected]>2020-08-12 14:06:55 +0100
committerIgor Aleksanov <[email protected]>2020-08-12 14:06:55 +0100
commit13f736d4a13bdf5af2cdd6a4832a41470431a70b (patch)
tree695b733d951dd65a7ddd7fe62d73eaa21745567a /editors
parentae0b2477fe5cb8b496b41bd37cb06d1a585bc66b (diff)
Add a configuration option for the vscode extension
Diffstat (limited to 'editors')
-rw-r--r--editors/code/package.json11
1 files changed, 10 insertions, 1 deletions
diff --git a/editors/code/package.json b/editors/code/package.json
index 1adf055d0..86584c071 100644
--- a/editors/code/package.json
+++ b/editors/code/package.json
@@ -609,6 +609,15 @@
609 }, 609 },
610 "description": "List of warnings warnings that should be displayed with hint severity.\nThe warnings will be indicated by faded text or three dots in code and will not show up in the problems panel.", 610 "description": "List of warnings warnings that should be displayed with hint severity.\nThe warnings will be indicated by faded text or three dots in code and will not show up in the problems panel.",
611 "default": [] 611 "default": []
612 },
613 "rust-analyzer.analysis.disabledDiagnostics": {
614 "type": "array",
615 "uniqueItems": true,
616 "items": {
617 "type": "string"
618 },
619 "description": "List of rust-analyzer diagnostics to disable",
620 "default": []
612 } 621 }
613 } 622 }
614 }, 623 },
@@ -904,4 +913,4 @@
904 ] 913 ]
905 } 914 }
906 } 915 }
907} 916} \ No newline at end of file