jslint4java is a Java wrapper around Douglas Crockford's JSLint tool.
5
votes
3answers
234 views
Excluding files from jslint4java in eclipse
I'm using jslint4java in eclipse. Unfortunately I have a few huge dictionary files that never change but every time when the workspace is built, linting those files takes ages.
Is it possible to ...
2
votes
1answer
144 views
JSLint4Java usage
JSLint4Java is a Java wrapper for JSLint. I need something like this for use in my GWT project, but the only way to use JSLint4Java seems to be from command line or with an ANT task. Does anyone know ...
1
vote
1answer
115 views
JsLint4Java 'is not defined' warnings when using multiple .js files
When working with more than one .js file e.g. if I have a separate .js file that contains unit tests I start to see lots of warnings (I'm using the Eclipse plug-in) like the following where a .js file ...
0
votes
1answer
96 views
How to tell JSLint not to ask for { on single line if statements
Right now I have the following code:
if (c > last) break;
And jslint complains with
jslint:crud.js:69:19:Expected '{' and instead saw 'break'.
There are several ways to overcome it:
if (c ...
0
votes
2answers
338 views
jslint4java tolerates unused variables
I have downloaded and set up jslint4java. When I use the following command:
java -jar C:\...\jslint4java-2.0.0.jar --encoding UTF-8 --indent 4 --browser *.js
Although there are some unused ...
0
votes
1answer
67 views
jslint - jslint4java - how to skip checking Required Blocks condition in javascript
I must use a condition like this in my Javascript code
if (condition) statement;
but it returns an error
(" Expected '{' and instead saw ' '. ")
while validating using jslint4java. Is there ...
0
votes
0answers
178 views
Excluding a folder from JSLint search (Eclipse Plugin)
While using JSLint Eclipse Plugin can we exclude a specific folder in a project that JSLint should exclude while searching for error etc??
0
votes
2answers
713 views
JavaScript Slint - report XML for Hudson
I am using JavaScript Lint for checking JavaScript source code. It's working fine with recursive analysis showing results in command window, but I would like to integrate JavaScript Lint results to ...
-5
votes
1answer
57 views
Jslint in Java application [closed]
is there any good Jslint wrapper for Java?
I found Jslint4java, but I would like to get more options.
P.S. I mean, I need to test JS code with Java application.
Thank you