Version 0.1.6.
1 file changed
tree: 66f97dd13d0cb0ae8939852f3e9f926258770815
  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 --vars --regexp app.js # All JSLint options supported
jslint --bitwise false app.js # Defaults to true, but you can specify false
find . -name "*.js" -print0 | xargs -0 jslint # JSLint your entire project

Install

npm install jslint

Self-Lint

make lint

License

See LICENSE file.