You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need to implement Husky to enforce code quality standards by running linting and formatting checks before code is committed to the repository. This will help maintain consistent code quality across all PRs going to main.
Current Problem
Code quality checks are not enforced before commits
Inconsistent code formatting and linting issues are sometimes discovered after PRs are created
Manual intervention required to fix formatting/linting issues during code review
Proposed Solution
Implement Husky pre-commit hooks to:
Run ESLint for code linting
Run Prettier for code formatting
Block commits if checks fail
Provide clear feedback to developers about failing checks
Expected Outcome
All commits to any branch will be checked for code quality
Developers receive immediate feedback about code quality issues
Consistent code style across the codebase
The text was updated successfully, but these errors were encountered:
Description
We need to implement Husky to enforce code quality standards by running linting and formatting checks before code is committed to the repository. This will help maintain consistent code quality across all PRs going to main.
Current Problem
Proposed Solution
Expected Outcome
The text was updated successfully, but these errors were encountered: