From 3468153619a722a7035ec188b02ab80751a2390b Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 12 May 2021 16:47:49 -0400 Subject: [PATCH] Warn but still recompile on lint error --- awx/ui_next/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui_next/package.json b/awx/ui_next/package.json index 44d8c8dedb..cc3d2c9d1a 100644 --- a/awx/ui_next/package.json +++ b/awx/ui_next/package.json @@ -64,8 +64,8 @@ "prestart-instrumented": "lingui compile", "pretest": "lingui compile", "pretest-watch": "lingui compile", - "start": "PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts start", - "start-instrumented": "DEBUG=instrument-cra PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts -r @cypress/instrument-cra start", + "start": "ESLINT_NO_DEV_ERRORS=true PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts start", + "start-instrumented": "ESLINT_NO_DEV_ERRORS=true DEBUG=instrument-cra PORT=3001 HTTPS=true DANGEROUSLY_DISABLE_HOST_CHECK=true react-scripts -r @cypress/instrument-cra start", "build": "INLINE_RUNTIME_CHUNK=false react-scripts build", "test": "TZ='UTC' react-scripts test --watchAll=false", "test-watch": "TZ='UTC' react-scripts test",