Updated install instructions for VSCode

Summary: Following the existing installation instructions for VSCode, TypeScript code was not formatted or linted out of the box

Reviewed By: passy

Differential Revision: D18061117

fbshipit-source-id: bedb57de47f4e880449d859b0dce2dd18f5f2995
This commit is contained in:
Michel Weststrate
2019-10-22 08:45:11 -07:00
committed by Facebook Github Bot
parent 3b1429b8b0
commit 80524220b3

View File

@@ -10,13 +10,19 @@ The flipper desktop source uses Flow, TypeScript, and ESLint. Feel free to use y
* ESLint
* Flow Language Support
* TypeScript and JavaScript Language Features (enabled by default)
**Settings**:
```json
{
"flow.useNPMPackagedFlow": true,
"javascript.validate.enable": false,
"eslint.autoFixOnSave": true
"eslint.autoFixOnSave": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
{"language":"typescriptreact", "autoFix": true}
],
}
```