don't report '<file> is OK.' in terse mode; just write a dot to stderr; need to check if this breaks emacs/flymake
1 file changed
tree: 54de4f71cd644ce422d6738cd8932d440a559fcb
  1. bin/
  2. lib/
  3. .gitignore
  4. LICENSE
  5. Makefile
  6. package.json
  7. README.md
README.md

node-jslint

Easily use JSLint from the command line.

jslint app.js

Install

npm install jslint -g

Self-Lint

make lint

Usage examples

Multiple files

jslint lib/worker.js lib/server.js

All JSLint options supported

jslint --white --vars --regexp app.js

Defaults to true, but you can specify false

jslint --bitwise false app.js

Pass arrays

jslint --predef $ --predef Backbone app.js

JSLint your entire project

find . -name "*.js" -print0 | xargs -0 jslint

License

See LICENSE file.