commit | 8734e375aad2bcd1607ecfdf0adde80e867ad564 | [log] [tgz] |
---|---|---|
author | Sam Mikes <smikes@cubane.com> | Sun Nov 17 14:35:41 2013 |
committer | Sam Mikes <smikes@cubane.com> | Sun Nov 17 14:35:41 2013 |
tree | d360c8feab77ad9c1487160e4633c891101361c8 | |
parent | a656e4fd1189a57cadff57ee33f46c97f86f4849 [diff] |
set version to 0.2.5-pre
Easily use JSLint from the command line.
jslint bin/jslint.js
Version 0.2.5 of node-jslint provides multiple editions of jslint to address backwards and forwards compatibility.
jslint lib/color.js
jslint --edition=latest lib/color.js
For example, edition 2013-02-03 which shipped with node-jslint 0.1.9:
jslint --edition=2013-02-03 lib/color.js
npm install jslint -g
make lint
Multiple files
jslint lib/color.js lib/reporter.js
All JSLint options supported
jslint --white --vars --regexp lib/color.js
Defaults to true, but you can specify false
jslint --bitwise false lib/color.js
Pass arrays
jslint --predef $ --predef Backbone lib/color.js
JSLint your entire project
find . -name "*.js" -print0 | xargs -0 jslint
Using JSLint with a config file
Start with the included jslintrc.example file and customize your options per project or copy it to $HOME/.jslintrc to apply your setting globally
See LICENSE file.