Skip to content

Commit

Permalink
chore: use .prettierignore to specify patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
haideralsh committed Sep 29, 2023
1 parent 47ba7aa commit bcb219c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit bcb219c

Please sign in to comment.