diff --git a/.gitignore b/.gitignore index 50b1a37ec15..e29d44ca3ea 100644 --- a/.gitignore +++ b/.gitignore @@ -40,6 +40,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" + ] +}