Skip to content

Commit ca9c61e

Browse files
authored
Update setting-up-your-editor.md (#8247)
`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.
1 parent cafd602 commit ca9c61e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docusaurus/docs/setting-up-your-editor.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ If you're using TypeScript and Visual Studio Code, the [ESLint Visual Studio Cod
2929
"eslint.validate": [
3030
"javascript",
3131
"javascriptreact",
32-
{ "language": "typescript", "autoFix": true },
33-
{ "language": "typescriptreact", "autoFix": true }
32+
"typescript",
33+
"typescriptreact"
3434
]
3535
}
3636
```

0 commit comments

Comments
 (0)