Skip to content

Commit

Permalink
Removed deprecated prettier setting reference in docs
Browse files Browse the repository at this point in the history
prettier.eslintIntegration setting is deprecated and it is not needed
here. We also don't need to install the prettier extension in VSCode
anyways to prettify our code as it is done by prettier plugin in eslint itself.
  • Loading branch information
zzeebbii committed Jun 19, 2020
1 parent e9ed2b6 commit c40045e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docs/general/editor.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,11 @@ You can also get VSCode to understand your project's static code analysis setup.
- You'll see any warnings or errors directly within VSCode
- VSCode can also automatically fix or format your code for you

To make this happen, install both the ESLint and Prettier extensions for VSCode and add the following to either your User or Workspace Settings:
To make this happen, install the ESLint extension for VSCode and add the following to either your User or Workspace Settings:

```json
{
"editor.formatOnSave": true,
"prettier.eslintIntegration": true,
"eslint.run": "onSave"
}
```
Expand Down

0 comments on commit c40045e

Please sign in to comment.