https://github.com/mnutt/jslint-multi
Faster jslint checking
https://github.com/mnutt/jslint-multi
Last synced: 5 months ago
JSON representation
Faster jslint checking
- Host: GitHub
- URL: https://github.com/mnutt/jslint-multi
- Owner: mnutt
- Created: 2010-03-30T14:32:17.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2010-03-30T14:47:46.000Z (over 15 years ago)
- Last Synced: 2025-01-09T23:54:03.158Z (6 months ago)
- Language: Ruby
- Homepage:
- Size: 910 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rdoc
- Changelog: History.txt
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]]