Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

shalu_104's avatar

Best code review tools for Laravel+vue

Hello all,

I'm learning frontend development. I have made an application in Laravel with Vue3. All the functionality seems to work properly but I'm not sure about the code quality in Vue. Is there any way I can assess the quality of my code ?

Thanks for the help

0 likes
5 replies
dualklip's avatar

Hi @shalu_104

That's depends a lot of where or how you want to integrate your analysis, because could be integrated on the automated test process, in the CI/CD deployment, on your computer with a manual supervision.

Maybe you can start with some package like cqc

The IDE companies also have their own solutions, like for example JetBrains that has Qodana

gych's avatar

@dualklip I doubt that the cqc package supports Vue3 since it hasn't been updated in 7 years. Have you used it before?

dualklip's avatar

Hi @gych,

You right when you say cqc hasn't been updated in 7 years. But you have to take in account cqc has been thought to analyse raw code. Only compares the lines to know how many code is duplicated and other things like high complexity functions. Usually this libraries are used against the compiled (but not minimised) code.

If you want to have a more complex quality analyser I think you should used another bigger tools like Qodana, which is my favourite because I have it integrated with my PhpStorm IDE.

Said so, I think that must be more focused on testing & covering VS code quality, because testing will take you to understand your code and then improve your code. The code quality tools only give you raw information, the conclusions are yours though

1 like

Please or to participate in this conversation.