Version 0.1.2.
1 file changed
tree: bde6f390639f20cb2de563c9d89a7d728651a525
  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
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.