Skip to content

Commit

Permalink
Add tsc lint check to lint script
Browse files Browse the repository at this point in the history
  • Loading branch information
Timothy-Gonzalez committed Aug 2, 2024
1 parent 47b98cb commit 1259c0e
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 @@ -12,8 +12,8 @@
"gen-jwt": "node scripts/generate-jwt-token",
"format:check": "yarn run prettier --check '**/*.{ts,js,cjs,json}'",
"format": "yarn run prettier --write '**/*.{ts,js,cjs,json}'",
"lint:check": "tsc && yarn run eslint src --ext .js,.jsx,.ts,.tsx",
"lint": "tsc && yarn run eslint src --ext .js,.jsx,.ts,.tsx --fix",
"lint:check": "tsc --noEmit && yarn run eslint src --ext .js,.jsx,.ts,.tsx",
"lint": "tsc --noEmit && yarn run eslint src --ext .js,.jsx,.ts,.tsx --fix",
"test": "jest",
"build": "tsc",
"verify": "yarn lint:check && yarn format:check",
Expand Down

0 comments on commit 1259c0e

Please sign in to comment.