diff --git a/.gitignore b/.gitignore index bf0df10791c..a50b13f3d85 100644 --- a/.gitignore +++ b/.gitignore @@ -39,6 +39,7 @@ capture_webrender/ # VSCode .vscode +!/.vscode /unminified-js diff --git a/.vscode/extensions.json b/.vscode/extensions.json new file mode 100644 index 00000000000..24ddd306769 --- /dev/null +++ b/.vscode/extensions.json @@ -0,0 +1,20 @@ +{ + // See http://go.microsoft.com/fwlink/?LinkId=827846 to learn about workspace recommendations. + // Extension identifier format: ${publisher}.${name}. Example: vscode.csharp + + // List of extensions which should be recommended for users of this workspace. + "recommendations": [ + // Trim only touched lines. + "NathanRidley.autotrim", + // ESLint support. + "dbaeumer.vscode-eslint", + // C/C++ language support. + "ms-vscode.cpptools", + // Rust language support. + "rust-lang.rust", + // CSS support for HTML documents. + "ecmel.vscode-html-css", + // IDL language support + "mythmon.idl" + ] +}