You have to disable eslint while `react-scripts start`.
As of `react-scripts` v4.0.2, you can now opt out of ESLint with an environment variable. You can do this by adding it to your `.env` file, or by prefixing your scripts in your package.json file.
For example in `.env`:
```
DISABLE_ESLINT_PLUGIN=true
```
You have to disable eslint while `react-scripts start`.
As of `react-scripts` v4.0.2, you can now opt out of ESLint with an environment variable. You can do this by adding it to your `.env` file, or by prefixing your scripts in your package.json file.
For example in `.env`:
```
DISABLE_ESLINT_PLUGIN=true
```