From c40045e06a190be9741aaeda6bf80cbd6253a938 Mon Sep 17 00:00:00 2001 From: Muhammad Zohaib Aslam Date: Fri, 19 Jun 2020 14:29:05 +0300 Subject: [PATCH] Removed deprecated prettier setting reference in docs 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. --- docs/general/editor.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/general/editor.md b/docs/general/editor.md index 792749a35d..d6f580ffde 100644 --- a/docs/general/editor.md +++ b/docs/general/editor.md @@ -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" } ```