Embracing Code Quality with Pre-Commit Framework

In the fast-paced world of software development, maintaining code quality is crucial. One effective way to ensure consistent coding standards and catch issues early in the development process is by using a pre-commit framework. In this blog article, we will explore the benefits and implementation of the pre-commit framework to streamline your development workflow. What is the Pre-Commit Framework? The pre-commit framework is a powerful tool that allows developers to define and automate checks on their code before it is committed to version control. It acts as a gatekeeper, ensuring that only clean and high-quality code makes its way into the repository. By running a series of checks and tests before committing changes, developers can catch issues early, preventing bugs and maintaining a high standard of code. ...

January 12, 2024 ยท 2 min ยท 414 words ยท Akash Chandwani

What is Gitleaks and How to Use It?

Update: The founders of Gitleaks have now created a new tool for detecting secrets and are calling it Betterleaks. Do check it out here . Gitleaks is an open source tool used to detect and prevent secrets (passwords / api-keys) checked-in to your git repository. The main advantage of Gitleaks is that it not only scans your latest source code but also the entire git history identifying any secrets committed to your source code in the past as well. ...

September 28, 2022 ยท 7 min ยท 1300 words ยท Akash Chandwani