Skip to content

Commit

Permalink
Fix lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
etienne-dldc committed Jun 26, 2021
1 parent 2db5dcc commit 0f0d109
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 @@ -23,8 +23,8 @@
"scripts": {
"build": "rimraf dist && tsc -p ./tsconfig.build.json",
"codecov": "codecov",
"lint": "prettier --check . && eslint && tsc --noEmit",
"lint:fix": "prettier --write . && eslint --fix",
"lint": "prettier . --check && eslint . && tsc --noEmit",
"lint:fix": "prettier . --write . && eslint . --fix",
"release": "yarn build && np",
"test": "yarn lint && jest --coverage",
"test:run": "jest",
Expand Down

0 comments on commit 0f0d109

Please sign in to comment.