DEV Community

Discussion on: Clean code or not clean code that's the question

Collapse
 
sargalias profile image
Spyros Argalias

I like all the tools you listed. I like to use everything possible to help with clean code.

In addition to the tools you listed, I like to use Git hooks. These run the whole build (if it's feasible) and run tests and such. You can make them run before every commit, or just before pushing, or at other times.

Not sure if it's relevant to "code quality", but I also like to use Storybook. It's a fairly good development environment and "component catalogue" or living style guide for components.

Collapse
 
kamo profile image
KAIDI

thanks for your reply,
I use gitlab hooks in merge requests, checking that there is a MR description and labels all the staff.
storybook is the future it's a must use.