From f5e64371e4f899908a502c5f68b53e671e37879b Mon Sep 17 00:00:00 2001 From: Brett Zamir Date: Mon, 13 Jul 2020 16:49:53 +0800 Subject: [PATCH] - npm: Add max-warnings of 0 for lint script --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a0cada08..e2f08bf4 100644 --- a/package.json +++ b/package.json @@ -55,7 +55,7 @@ "remark": "remark -q -f .", "build-html": "babel-node --plugins @babel/plugin-transform-modules-commonjs build/build-html.js", "eslint-fix": "eslint --cache --fix --ext js,md,html .", - "eslint": "eslint --cache --ext js,md,html .", + "eslint": "eslint --max-warnings 0 --cache --ext js,md,html .", "rollup": "rollup -c", "build-by-config": "rollup -c rollup-config.config.js", "prep-no-core-rollup": "run-s eslint build-html build-by-config",