The gjslint tag has no wiki summary.
1
vote
1answer
25 views
why “Optional parameter name %s must be prefixed with opt_.” in gjslint --strict mode?
I get the following on one particular javascript file
Line 23, E:0233: Optional parameter name category must be prefixed with opt_.
Line 649, E:0233: Optional parameter name animate must be prefixed ...
0
votes
0answers
65 views
gjslint not reporting any error on file without jsdoc whatsoever
I read somewhere that with jsdoc in your JavaScript and the google closure tool gjslint you can strongly type your javascript. It's not really strongly typed but the tool will report on uncommented ...
0
votes
1answer
44 views
Is it possible to check function arguments by google closure linter (gjslint) tool?
For example, I have the following script "test.js":
/**
* Adds two numbers.
* @param {number} a First number.
* @param {number} b First number.
* @return {number} Sum of two numbers.
*/
function ...
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 ...
2
votes
1answer
201 views
Why is it that “Member must not have @private JsDoc”?
I'm cleaning up my code with the gjslint tool from Google Closure Tools. It is reporting the following error:
Line 15, E:0222: Member "this._dictionary" must not have @private JsDoc
And this is the ...
9
votes
2answers
2k views
What is “Linting”?
PHPLint, JSLint, and I recently came across "you can lint your JS code on the fly" while reading something about some IDE. So what is this Linting that everyone knows but me :-) ?
4
votes
4answers
584 views
why “Single-quoted string preferred over double-quoted string.” in js?
While using gjslint, I got a hint: "Single-quoted string preferred over double-quoted string".
So why? I'm a little confused with this. Why single-quoted preferred?
Hope to get some help. Thanks ...
0
votes
1answer
241 views
how do I know what version of gjslint I have installed?
This may be a dumb question, but I cannot figure it out. Doing gjslint --help does not provide the answer, and --version is not a valid flag.
Any ideas?