From 6e87ffc36cc144ee43eb4795f1cc89c7c81aecd4 Mon Sep 17 00:00:00 2001 From: Xymorot Date: Sun, 24 Jan 2021 20:11:01 +0100 Subject: [PATCH] meta: allow a maximum of 0 warnings for the lint script (as intended) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 01435a7..8b1f554 100644 --- a/package.json +++ b/package.json @@ -34,7 +34,7 @@ "test": "electron-mocha --config .mocharc.json", "coverage": "nyc npm run test", "prelint": "eslint-config-prettier src/main.ts", - "lint": "eslint ./**/*.* --max-warnings 1", + "lint": "eslint ./**/*.* --max-warnings 0", "lint:fix": "eslint ./**/*.* --fix", "prettier": "prettier -c **/*.*", "prettier:fix": "prettier --write **/*.*",