My Github page
Prerequisite dependency
You can clone this repo using follow command
git clone https://github.com/oOhyeahh/oOhyeahh.github.io.git
In order to maintain the code and commit in consistent format, we use husky to run linting and code formating hooks. To set up husky in local development, using the following command
npm install
npm run prepare
git add .husky/pre-commit
You can add hook to husky using the following command
npx husky add .husky/pre-commit "<your npm command>"
git add .husky/pre-commit
The hook would run everytime when you make a commit. Or you can force to ignore it by adding no-verify
add the end of commit command.