From 071ba8f099be7d07709b1f0a3b2dbb74ca24381c Mon Sep 17 00:00:00 2001 From: Tsu-ba-me Date: Wed, 23 Feb 2022 17:52:11 -0500 Subject: [PATCH] chore(striker-ui): config lint-staged to ignore out/ --- striker-ui/.lintstagedrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/striker-ui/.lintstagedrc.json b/striker-ui/.lintstagedrc.json index 9620fcbb..e7edbfd1 100644 --- a/striker-ui/.lintstagedrc.json +++ b/striker-ui/.lintstagedrc.json @@ -1,4 +1,4 @@ { - "*.{js,jsx,ts,tsx}": "npm run lint -- --fix", + "!(out/**/*)*.{js,jsx,ts,tsx}": "npm run lint -- --fix", "*.{json,md}": "prettier --write" }