-
Commit Prefixes: Check the correctness of the commit prefixes. Choose the most appropriate prefix for your changes by referring to the
commitlint.config.js
file. -
Code Quality: Ensure that your code adheres to the formatting and linting rules:
- Run the following commands to check and fix code formatting before submitting:
- To check formatting:
npm run prettier
- To fix formatting:
npm run prettier:fix
- To check linting:
npm run lint
- To fix linting issues:
npm run lint:fix
- To check formatting:
- Run the following commands to check and fix code formatting before submitting:
-
Tests: Make sure all tests pass successfully. You can run the tests with:
npm run test