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 ?
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.
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