Bläddra i källkod

fix lint not failing on warnings on CI (#1063)

David Luzar 5 år sedan
förälder
incheckning
c416de3499
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      package.json

+ 1 - 1
package.json

@@ -96,7 +96,7 @@
     "test": "npm run test:app",
     "test:app": "react-scripts test --env=jsdom --passWithNoTests",
     "test:debug": "react-scripts --inspect-brk test --runInBand --no-cache",
-    "test:code": "eslint --ignore-path .gitignore --ext .js,.ts,.tsx .",
+    "test:code": "eslint --max-warnings=0 --ignore-path .gitignore --ext .js,.ts,.tsx .",
     "test:typecheck": "tsc",
     "test:other": "npm run prettier -- --list-different"
   },