When doing javascript development it is common to have linting and test tasks in your package.json file. It is easy to forget to run these common tasks before pushing code and this can result in a…
Using Prettier and husky to make your commits safe.
medium.com
Whether you work in a team or by yourself, having consistently formatted code is important for readability and maintainability. Use Prettier to automatically format your JavaScript and use husky and…
While working on an enterprise development team, it is important that all typescript code linting and unit tests are passing before committing code, especially if you are using some form of…
Maksim Ivanov
maksimivanov.com
Git provides an interface to run some code as reaction on specific triggers. Those triggers are called githooks (hooks used by git). You can…