Skip to content

Commit

Permalink
Run Prettier after ESLint (#49555)
Browse files Browse the repository at this point in the history
  • Loading branch information
ravicious authored Nov 29, 2024
1 parent 7bf8010 commit 4cd6273
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,8 +18,8 @@
"test-coverage": "jest --coverage && web/scripts/print-coverage-link.sh",
"test-update-snapshot": "pnpm run test --updateSnapshot",
"tdd": "jest --watch",
"lint": "pnpm prettier-check && pnpm eslint",
"lint-fix": "pnpm prettier-write && pnpm eslint --fix",
"lint": "pnpm eslint && pnpm prettier-check",
"lint-fix": "pnpm eslint --fix && pnpm prettier-write",
"eslint": "eslint --quiet '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
"type-check": "NODE_OPTIONS='--max-old-space-size=4096' tsc --build",
"prettier-check": "prettier --check '+(e|web)/**/*.{ts,tsx,js,jsx,mts}'",
Expand Down

0 comments on commit 4cd6273

Please sign in to comment.