Reputation: 1144
I need to define a coding convention for JavaScript, that analyzes the code statically, and then generates reports.
All the tools I've seen are web-based, or do not have the option of defining personalized convention, or don't generate reports.
Does a tool like this exist?
Upvotes: 0
Views: 40
Reputation: 545
You should have a look at Teamscale. It has a large number of rules defined for JavaScript and allows you to implement Custom Checks on top of that. You can access the analysis results in your IDE, your browser or via the well-documented REST-API (in case you want to generate your own reports).
Upvotes: 1