JSLint is a "code quality" tool for JavaScript developed by Douglas Crockford, a well-known developer also responsible for JSON, JSMin, ADSafe and parts of YUI.
JSHint and JSLint are awesome tools. However, the "mixed spaces and tabs" warning dominates the report. Is there a way …
javascript jslint jshintI am playing around with the Facebook's react.js library. I am trying to use their JSX syntax which describes …
javascript facebook jslint jshint reactjsI get the following error in jsLint: 'document' was used before it was defined. Line that causes the error: document.…
jslintPossible Duplicate: JSLint: was used before it was defined I run JSlint and saw errors like that: 'foo' is not …
javascript jslintI'm trying to get my Javascript code 100% JSLint clean. I've got some JS code that I've lifted from elsewhere to …
javascript jslintI find that JSLint produces lots of warnings of the form: Expected 'foo' to have an indentation at X instead …
formatting static-analysis jslintI am using this bit of JavaScript to generate a UID: (original:) //If ID has not been defined then generate …
javascript jslint jshintfunction test(){ if(true){ var a = 5; } alert(a); } test(); I keep getting 'out of scope' errors in my JS code …
javascript jslintI'm trying to use node-jslint https://github.com/reid/node-jslint in order to keep my code clean I've got a …
javascript node.js constants ecmascript-6 jslintI have a huge script that passes JSLint (including avoidance of all bad parts). Except for one stretch, which is …
jslint