Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: prevent eslint errors from blocking build (#506)
Currently, when we attempt to start our react app, create-react-app fails to compile when there are any eslint or prettier errors. The reason for this is documented in this github issue: facebook/create-react-app#9887 (comment) This issue is fixed with react-scripts v4.0.2 with the use of an ESLINT_NO_DEV_ERRORS env var (this is documented under advanced configuration here: https://create-react-app.dev/docs/advanced-configuration/) This commit adds the ESLINT_NO_DEV_ERRORS env var to our env-example file. We will need to separately add it to our production and staging environments too.
- Loading branch information