Skip to content

Commit

Permalink
fix: Unify Prettier and ESLint scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
RezaRahemtola committed Aug 8, 2024
1 parent 0699b43 commit 6ac2dd5
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions packages/sdk/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,8 @@
],
"scripts": {
"build": "tsup",
"lint": "eslint",
"lint:fix": "yarn lint --fix",
"format": "prettier src/ --check",
"format:fix": "prettier src/ --write",
"lint": "prettier src/ --check && eslint",
"lint:fix": "prettier src/ --write && eslint --fix",
"test": "jest",
"test:ci": "jest --coverage --passWithNoTests "
},
Expand Down

0 comments on commit 6ac2dd5

Please sign in to comment.