Middle
Is there code review in your project? What standards and requirements are used for the code?
sobes.tech AI
Answer from AI
Yes, code review is mandatory on the project. It helps maintain code quality, share knowledge, and prevent errors.
The main standards and requirements for the code include:
- Adherence to a consistent coding style (e.g., using ESLint and Prettier for JavaScript/TypeScript).
- Clear and informative comments, especially for complex logic.
- Use of typing (TypeScript) to increase reliability.
- Minimizing code duplication and following DRY principles.
- Mandatory testing of new features.
- Performance and security checks when necessary.
Code review is conducted through pull requests, where colleagues leave comments and suggestions for improvement.