vote up 3 vote down star
2

Javascript code can be tough to maintain.
I am looking for tools that will help me ensure a reasonable quality level.
So far I have found JsUNit, a very nice unit test framework for javascript. Tests can be run automatically from ant on any browser available.
I have not found yet some javascript equivalent of PMD, checkstyle, Findbug...

Do you know any static code analysis tool for javascript ?

flag

55% accept rate
Your title doesn't seem to make sense. What does maven have to do with JavaScript quality control? – SCdF Sep 18 '08 at 20:05

4 Answers

vote up 1 vote down

A quick Google for "jslint ant task" reveals jslint4java, which apparently includes an Ant task.

link|flag
The jslint4java ant task should be fairly easy to embed in maven using the antrun plugin. – Dominic Mitchell Mar 24 at 11:01
I documented how to do so: happygiraffe.net/blog/2009/… – Dominic Mitchell Aug 18 at 12:17
vote up 0 vote down

JSLint

link|flag
Thanks but how to use it in an automated build ? – Alexandre Victoor Sep 18 '08 at 13:15
vote up 0 vote down

I've worked on the SweetDEV RIA project which is a Java tag library composed of several "Web 2.0/Ajax/JavaScript" components.

The maven 2 build process includes some in-house plugins which launches JSLint (code verifier), JsMin (code minifier), JsDoc generation (JavaDoc like documentation), JsUnit (unit tests) and Selenium (in browser) tests .

You may take a look on the SweetDEV RIA maven plugins repository.

link|flag
vote up 0 vote down

This project looks close:

http://dev.abiss.gr/mvn-jstools/index.html

It generates a report with JsLint. It doesn't look like it hooks into the test phase of the build lifecycle, so I don't think it will reject a build if jslint finds issues (which is what I'd like to do on my projects).

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.