Version 0.1.0.
1 file changed
tree: a319aadbc73f837e127035a1a3f76499e5b5055c
  1. bin/
  2. lib/
  3. LICENSE
  4. Makefile
  5. package.json
  6. README.md
README.md

node-jslint

Easily use JSLint from the command line.

jslint app.js
jslint lib/worker.js lib/server.js # Multiple files
jslint --white --onevar --regexp app.js # All JSLint 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 your entire project

Install

npm install jslint

Self-Lint

make lint

License

See LICENSE file.