gecko-dev/.vscode/extensions.json
Andi-Bogdan Postelnicu 8521ee6581 Bug 1685030 - Remove rust from vscode extensions list. r=sylvestre DONTBUILD
`rust` and `rust-analyzer` are incompatible together so we should remove the first
one since `rust-analyzer` is the better choice.

Differential Revision: https://phabricator.services.mozilla.com/D100759
2021-01-05 17:28:05 +00:00

25 lines
768 B
JSON

{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
// Trim only touched lines.
"NathanRidley.autotrim",
// ESLint support.
"dbaeumer.vscode-eslint",
// Prettier support.
"esbenp.prettier-vscode",
// C/C++ language support with clangd
"llvm-vs-code-extensions.vscode-clangd",
// Provides support for rust-analyzer: novel LSP server for the Rust programming language.
"matklad.rust-analyzer",
// CSS support for HTML documents.
"ecmel.vscode-html-css",
// Web app and extension debugging.
"firefox-devtools.vscode-firefox-debug",
// IDL language support
"mythmon.idl",
// Mercurial support
"mrcrowl.hg"
]
}