From 978703cafeafbaab0367b754397aee137c4b4248 Mon Sep 17 00:00:00 2001 From: Kengo TODA Date: Wed, 16 Mar 2022 16:02:22 +0800 Subject: [PATCH] build: do not lint files in the coverage dir --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a646da6..722204a 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ }, "scripts": { "prepack": "tsc", - "lint": "prettier --check \"./**/*.{ts,tsx,md,json}\" \"!./.nyc_output/**\"", + "lint": "prettier --check \"./**/*.{ts,tsx,md,json}\" \"!./.nyc_output/**\" \"!./coverage/**\"", "test": "jest", "prepare": "husky install" },