Es gibt eine Version von JSLint (node-JSLint) (Kommandozeile), mit der Sie mehrere Dateien gleichzeitig prüfen können. Folgen Sie dem Link zum Download auf GitHub:
https://github.com/reid/node-jslint
Die folgenden Beispiele für den Aufruf über die Befehlszeile:
JSLint app.js
JSLint lib / lib worker.js / server.js # Multiple files
JSLint - white - onevar - regexp app.js JSLint # All options supported
JSLint - bitwise false app.js # Defaults to true, but You Can Specify false
JSLint - goodparts - # undef false app.js The Good Parts, except undef
JSLint-gp app.js # Shorthand for - goodparts:-gp
find . -name "*.js" -print0 | xargs -0 jslint # JSLint JSLint your Entire Project
Hinweis: Diese Anwendung wurde mit NodeJS entwickelt.