TheNetworkOfficial / SovereignQuest

0 stars 0 forks source link

Implementation of Git hooks for pre-commit checks. #13

Open TheNetworkOfficial opened 1 week ago

TheNetworkOfficial commented 1 week ago

Configured Git hooks using Husky to automate checks on code quality before changes are committed. These hooks are triggered during specific events in the Git workflow, such as before a commit is made (pre-commit). In this setup, the pre-commit hook ensures that Lint-Staged runs ESLint and Prettier on staged files, catching any code issues or style inconsistencies early in the development cycle, and thus maintaining code integrity.