chore: Initialize husky

This commit is contained in:
Thomas A. Christensen II 2024-02-02 21:24:46 -06:00
parent 3fdf4e64ae
commit 92d5fbf3ef
Signed by: millironx
GPG key ID: B7044A3432851F64
3 changed files with 9 additions and 1 deletions

1
.husky/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
_

2
.husky/pre-commit Normal file
View file

@ -0,0 +1,2 @@
#!/usr/bin/env sh
npx lint-staged

View file

@ -11,7 +11,8 @@
"lint:fix": "eslint --fix {src,test}/**/*.ts",
"package": "ncc build --source-map --license LICENSE",
"test": "c8 --reporter=lcov ava",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
"prepare": "husky && husky install"
},
"repository": {
"type": "git",
@ -76,5 +77,9 @@
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{ts,js,yml,md,json}": "prettier --write"
}
}