commit 6b0274e729b20396c08a77c076f11103b7887204
tree 344b1c7c563f046eedeee87f6abad545ae387a55
parent ef5bc924b5eafde274ef6babefc2d2104601d6b6
tree 344b1c7c563f046eedeee87f6abad545ae387a55
parent ef5bc924b5eafde274ef6babefc2d2104601d6b6
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Mon Jul 27 08:44:47 -0700 2009 | |
| |
LICENCE.txt | Sun Jul 15 12:50:25 -0700 2007 | |
| |
NEWS.txt | ||
| |
README.txt | Wed Jul 29 00:30:08 -0700 2009 | |
| |
RELEASE.txt | ||
| |
TODO.txt | Wed Jul 29 00:29:55 -0700 2009 | |
| |
bin/ | Tue Aug 04 03:46:35 -0700 2009 | |
| |
jslint4java-ant/ | ||
| |
jslint4java-dist/ | ||
| |
jslint4java-docs/ | ||
| |
jslint4java/ | ||
| |
pom.xml |
README.txt
jslint for java <http://code.google.com/p/jslint4java/> ======================================================= This is a java wrapper around the fabulous tool by Douglas Crockford, jslint (See <http://jslint.com/>). It provides a simple interface for detecting potential problems in JavaScript code. You can run it on the command line: % java -jar jslint4java-${project.version}.jar application.js jslint:application.js:11:9:Line breaking error ')'. jslint:application.js:11:10:Missing semicolon. There are a multitude of options; try "--help" for more details. The output is colon separated fields. The fields are: * "jslint" * the file name * the line number (starting at zero) * the character number (starting at zero) * the problem that was found You may also use the jar as an ant task. The quickest way to get started is to drop it in ~/.ant/lib. See docs/ant.html for more details. NB: The packaged jar file includes a builtin version of rhino (a JavaScript engine). If this causes trouble, you may wish to download standalone versions through the maven repository. If you wish to use jslint4java from within Java, please use a maven dependency: <dependency> <groupId>com.googlecode.jslint4java</groupId> <artifactId>jslint4java</artifactId> <version>${project.version}</version> </dependency> If you have any comments or queries, please send them to dom [at] happygiraffe.net. This software is licenced under the BSD licence (see LICENCE.txt). @(#) $Id$

