gecko-dev/.vscode/extensions.json
Andi-Bogdan Postelnicu 60cc6f8d69 Bug 1656740 - Integrate clangd in vscode for C++ language support. r=froydnj
In order to have a cross platform ide for C++ language support we've added `clangd`
extenssion and artifact part of `vscode` suite.
To generate the configuration you simply run:
`./mach ide vscode `.

Differential Revision: https://phabricator.services.mozilla.com/D85416
2020-08-06 06:25:17 +00:00

27 lines
820 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",
// Rust language support.
"rust-lang.rust",
// 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"
]
}