Skip to content

Commit 0e6ee8a

Browse files
committedNov 18, 2023
feat: add husky pre-commit
1 parent 771fb3c commit 0e6ee8a

File tree

3 files changed

+229
-8
lines changed

3 files changed

+229
-8
lines changed
 

‎.husky/pre-commit

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
yarn lint-staged

‎package.json

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
"compile": "yarn workspace mikro-orm-find-dataloader run build",
1111
"test": "yarn workspace mikro-orm-find-dataloader run test",
1212
"version": "yarn changeset version && yarn install --immutable",
13-
"release": "yarn run compile && yarn changeset publish"
13+
"release": "yarn run compile && yarn changeset publish",
14+
"postinstall": "husky install"
1415
},
1516
"version": "1.0.0",
1617
"description": "Additional dataloaders for MikroORM",
@@ -35,12 +36,19 @@
3536
"eslint-plugin-n": "^16.3.1",
3637
"eslint-plugin-prettier": "^5.0.1",
3738
"eslint-plugin-promise": "^6.1.1",
39+
"husky": "^8.0.3",
3840
"jest": "^29.7.0",
41+
"lint-staged": "^15.1.0",
3942
"nodemon": "^3.0.1",
4043
"prettier": "^3.1.0",
4144
"rimraf": "^5.0.5",
4245
"ts-jest": "^29.1.1",
4346
"ts-node": "^10.9.1",
4447
"typescript": "^5.2.2"
48+
},
49+
"lint-staged": {
50+
"*.ts": [
51+
"eslint \"packages/**/*.ts\" \"examples/**/*.ts\" --fix"
52+
]
4553
}
4654
}

0 commit comments

Comments
 (0)