DEV Community

Discussion on: How to ensure the highest quality of Software code

Collapse
 
dan1ve profile image
Daniel Veihelmann • Edited

This is a nice overview, thanks ! 👏

Two additional things we do are (1) code reviews and (2) code quality retrospectives. In the latter, the dev team can discuss findings that slipped through. It's also a great way to discuss code quality in general.

Do you run Sonarqube only once per week? Our static analyzer (Teamscale, shameless plug 😉) scans every commit and runs independently from the build, in order to deliver fast feedback.

Collapse
 
someshthakur profile image
Somesh Thakur

Hey Daniel,

Thanks for appreciating.
I agree, code reviews are good way of practicing inspections on new additions. We do that with predefined list of rules to be checked by anyone from team. We also have sonarqube scan for each merge request. But code retrospective is something new which I need to read about.

Thanks again for sharing your static analyzer. :)