File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /usr/bin/env sh
2+ . " $( dirname -- " $0 " ) /_/husky.sh"
3+
4+ pnpm lint-staged
Original file line number Diff line number Diff line change 1616 "format" : " prettier --experimental-cli --ignore-unknown '**/*' --write" ,
1717 "lint" : " pnpm --filter \" ./packages/**\" lint" ,
1818 "lint-all" : " eslint . --fix" ,
19+ "prepare" : " husky" ,
1920 "test" : " pnpm --filter \" ./packages/**\" test" ,
2021 "test:docs" : " node scripts/verify-links.ts" ,
2122 "generate-docs" : " node scripts/generate-docs.ts"
3839 "eslint" : " ^9.39.1" ,
3940 "eslint-import-resolver-typescript" : " ^4.4.4" ,
4041 "eslint-plugin-react" : " ^7.37.5" ,
42+ "husky" : " ^9.1.7" ,
4143 "jsdom" : " ^27.2.0" ,
4244 "knip" : " ^5.70.2" ,
45+ "lint-staged" : " ^15.5.2" ,
4346 "markdown-link-extractor" : " ^4.0.3" ,
4447 "prettier" : " ^3.7.3" ,
4548 "publint" : " ^0.3.15" ,
5154 "vite" : " ^7.2.6" ,
5255 "vitest" : " ^3.2.4" ,
5356 "zod" : " ^3.25.76"
57+ },
58+ "lint-staged" : {
59+ "*.{ts,tsx}" : [
60+ " eslint --fix"
61+ ]
5462 }
5563}
You can’t perform that action at this time.
0 commit comments