From 2b297251179a4d3a562f5d9cbe971803e2a3f271 Mon Sep 17 00:00:00 2001 From: Haider Alshamma Date: Thu, 28 Sep 2023 15:18:50 -0400 Subject: [PATCH] chore: use .prettierignore to specify patterns --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 187c28b4f..a1c6a4a3d 100644 --- a/package.json +++ b/package.json @@ -18,11 +18,11 @@ "check": "yarn check:types && yarn check:lint && yarn check:format", "check:types": "tsc && cd cypress && tsc", "check:lint": "eslint --config ./.eslintrc .'*/**/*.{js,ts,tsx}'", - "check:format": "prettier -c **/*.{ts,tsx,js}", + "check:format": "prettier -c .", "fix": "yarn fix:lint && yarn fix:format", "fix:lint": "yarn check:lint --fix", - "fix:format": "prettier -w **/*.{ts,tsx,js}", + "fix:format": "prettier -w .", "test": "yarn test:components && yarn run test:e2e", "test:components": "jest",