Quellcode durchsuchen

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

David Luzar vor 5 Jahren
Ursprung
Commit
c416de3499
1 geänderte Dateien mit 1 neuen und 1 gelöschten Zeilen
  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"
   },