Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mnutt/jslint-multi

Faster jslint checking
https://github.com/mnutt/jslint-multi

Last synced: about 2 months ago
JSON representation

Faster jslint checking

Awesome Lists containing this project

README

        

= jslint-multi

- Code: git://github.com/mnutt/jslint-multi.git

== Description

This gem runs jslint against all files in public/javascripts. It
was extracted from juicer and converted to use output similar to
rspec.

== Installation

Add a rake task in lib/tasks/jslint.rake:

task :jslint do
files = Dir["public/javascripts/*.js"]
system("jslint-multi #{files.flatten.join(' ')}")

exit $?.exitstatus
end

== Maintainers

- {Michael Nutt}[mailto:[email protected]]