Skip to content

Commit

Permalink
Update setting-up-your-editor.md (#8247)
Browse files Browse the repository at this point in the history
`Auto Fix is enabled by default. Use the single string form.` warning is shown in `.vscode/settings.json` due to changes in vscode-eslint. 
As autoFix is set to default, object format in `eslint.validate` is deprecated.
  • Loading branch information
eip1599 committed Jan 30, 2020
1 parent cafd602 commit ca9c61e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docusaurus/docs/setting-up-your-editor.md
Expand Up @@ -29,8 +29,8 @@ If you're using TypeScript and Visual Studio Code, the [ESLint Visual Studio Cod
"eslint.validate": [
"javascript",
"javascriptreact",
{ "language": "typescript", "autoFix": true },
{ "language": "typescriptreact", "autoFix": true }
"typescript",
"typescriptreact"
]
}
```
Expand Down

0 comments on commit ca9c61e

Please sign in to comment.