This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.classpath | ||
| |
.project | ||
| |
LICENCE.txt | Sun Jul 15 12:50:25 -0700 2007 | |
| |
NEWS.txt | ||
| |
README.txt | ||
| |
TODO.txt | ||
| |
build.xml | ||
| |
etc/ | ||
| |
lib/ | ||
| |
src/ | ||
| |
test/ |
README.txt
jslint for java =============== 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. The output of this project is two jar files: * dist/jslint.jar (just the jslint code) * dist/jslint+rhino.jar (jslint and the rhino JavaScript engine) If you want a tool to run at the command line, you'll want the latter. The usage is simple: % java -jar jslint+rhino.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 There is also an ant task available. See JSLintTask in the javadoc for more details. 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$








