Skip to content
Logo Theodo

Articles from Hugo Lime

Protect your git branches with Husky

Hugo Lime2 min read

tl:dr To add a pre-commit git hook with Husky:Install Husky with npm install husky --save-dev Set the pre-commit command in your package.json:"scripts": { "precommit": "npm test" },What are git hooks? Git hooks are scripts launched when carrying out some git actions.

Continue reading →

Speed up Vagrant Synced Folders

Hugo Lime3 min read

Do you wish your vagrant synced folders to have better performance? Especially if your host machine is running Linux. Here are some tricks to speed it up. Set up a synced folder Vagrant is a convenient tool for quickly setting up your…

Continue reading →