Typescript analysis with SonarQube

I use node_modules / codelyzer to parse my Typescript source code. "I define the rules manually in the tslint.json file.

But is it possible to parse Typescript using SonarQube?

+4
source share
2 answers

You can use the plugin developed by the SonarQube community to support TypeScript.

You will find it on the Other Plugins page in the SonarQube official plugin library .

+7
source

Source: https://habr.com/ru/post/1672996/


All Articles