servo/.vscode/extensions.json
Samson c0bee7cb86
Format toml files (#30112)
* Add taplo fmt config for toml fmt

* fmt toml files

* Add even-better-toml to extensions recommendations
2023-08-17 15:07:43 +00:00

21 lines
No EOL
749 B
JSON

{
// 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-analyzer",
// CSS support for HTML documents.
"ecmel.vscode-html-css",
// IDL language support
"mythmon.idl",
// TOML files
"tamasfe.even-better-toml"
]
}