
Code::TidyAll::Plugin::JSHint - use jshint with tidyall

version 0.13

In configuration:
; With default settings
;
[JSHint]
select = static/**/*.js
; Specify options inline
;
[JSHint]
select = static/**/*.js
options = bitwise camelcase latedef
; or refer to a jshint.json config file in the same directory
;
[JSHint]
select = static/**/*.js
argv = --config $ROOT/jshint.json
where jshint.json looks like
{
"bitwise": true,
"camelcase": true,
"latedef": true
}

Runs jshint, a JavaScript validator, and dies if any problems were found.

See installation options at jshint. One easy method is to install npm, then run
npm install jshint -g

Arguments to pass to jshint
Full path to jshint
A whitespace separated string of options, as documented here. These will be written to a temporary config file and passed as --config to argv.


Jonathan Swartz <swartz@pobox.com>

This software is copyright (c) 2011 by Jonathan Swartz.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.