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

This commit is contained in:
David Luzar 2020-03-23 16:20:42 +01:00 committed by GitHub
parent cf4fa30a57
commit c416de3499
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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"
},