Bug 1563848 - Recommend a VSCode plugin for prettier. r=vporof

Differential Revision: https://phabricator.services.mozilla.com/D37134

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Panos Astithas 2019-07-06 07:33:28 +00:00
Родитель 6e3840ddec
Коммит e9127d9614
1 изменённых файлов: 18 добавлений и 16 удалений

34
.vscode/extensions.json поставляемый
Просмотреть файл

@ -1,18 +1,20 @@
{
// 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",
// 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"
]
// 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.
"ms-vscode.cpptools",
// Rust language support.
"rust-lang.rust",
// CSS support for HTML documents.
"ecmel.vscode-html-css",
// IDL language support
"mythmon.idl"
]
}