Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mnutt/jslint-multi
- Owner: mnutt
- Created: 2010-03-30T14:32:17.000Z (over 14 years ago)
- Default Branch: master
- Last Pushed: 2010-03-30T14:47:46.000Z (over 14 years ago)
- Last Synced: 2024-04-08T15:46:00.626Z (9 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]]