Skip to content

Commit

Permalink
ESLint: fail npm run lint if any warnings are reported (#3144)
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanGoncharov committed May 28, 2021
1 parent bf26a52 commit d8478dc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -30,7 +30,7 @@
"changelog": "node resources/gen-changelog.js",
"benchmark": "node benchmark/benchmark.js",
"test": "npm run lint && npm run check && npm run testonly && npm run prettier:check && npm run check:spelling && npm run check:integrations",
"lint": "eslint --cache .",
"lint": "eslint --cache --max-warnings 0 .",
"check": "tsc --pretty",
"testonly": "mocha --full-trace src/**/__tests__/**/*-test.ts",
"testonly:cover": "nyc npm run testonly",
Expand Down

0 comments on commit d8478dc

Please sign in to comment.