diff --git a/template/README.md b/template/README.md index 2e7b76e18ed..2f4e2fdf1ef 100644 --- a/template/README.md +++ b/template/README.md @@ -185,6 +185,18 @@ You would need to install an ESLint plugin for your editor first. > + +>**For Visual Studio Code users** + +>VS Code ESLint plugin automatically detects Create React App's configuration file. So you do not need to create `eslintrc.json` at the root directory, except when you want to add your own rules. In that case, you should include CRA's config by adding this line: + +>```js +{ + // ... + "extends": "react-app" +} +``` + Then add this block to the `package.json` file of your project: ```js