mirror of
https://github.com/nasa/openmct.git
synced 2025-02-10 21:01:31 +00:00
* chore: upgrade prettier and eslint libraries to latest - upgrade prettier - upgrade eslint - upgrade eslint-plugin-prettier - upgrade eslint-config-prettier * chore: run lint:fix * chore: add `prettier-eslint` devDependency - The `prettier-eslint` vscode plugin sinc v6.0.0 no longer provides this package so we must install it as a devDependency so that autoformat works. * chore: add recommended extensions file for vscode users * Update extensions.json * Revert "Update extensions.json" This reverts commit 942f341a75abf68842a0d6e3a1d5092bc9f00c51. --------- Co-authored-by: John Hill <john.c.hill@nasa.gov>
15 lines
567 B
JSON
15 lines
567 B
JSON
{
|
|
// See https://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": [
|
|
"Vue.volar",
|
|
"Vue.vscode-typescript-vue-plugin",
|
|
"dbaeumer.vscode-eslint",
|
|
"rvest.vs-code-prettier-eslint"
|
|
],
|
|
// List of extensions recommended by VS Code that should not be recommended for users of this workspace.
|
|
"unwantedRecommendations": ["octref.vetur"]
|
|
}
|