Bump version to 0.1.10
1 file changed
tree: 4726be70a2c3bbfe9b19e4723db61a776f4303bd
  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.