I want a single program that recursively finds all *.js, *.html and *.css files in a given directory and JSLints, and W3C validates them respectively and prints out all errors found. Also it separately JSLints and CSS validates anything found inside script and style tags embedded in the html files. I also want this to validate other less common web contents too if possible using the W3C tools. The tools should also have option for passing in common JavaScript frameworks for JSLint (e.g. it should work fine with latest JQuery). Where I can buy such a tool?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
You could build your own solution in Ant, which works across most platforms. I think your HTML would need to be XHTML though. |
|||||||
|
|
CSE Validator - http://www.htmlvalidator.com/ |
|||
|
|
|
If you're using Visual Studio 2010, you can try the Chirpy extension: http://www.weirdlover.com/2010/05/31/chirpy-has-a-new-home-and-new-features/ This extension lets you specify JS compilers, lint and minifiers for files in your solution (if you're using VS). |
|||
|
|
|
I am building this open source tool, but some polish is still needed: |
|||
|
|
|
Try this site, I don't know if it's quite what you want, but it's at least centralized. |
|||
|
|
|
You could easily write a shell script to do that. Don't bother with Ant (though Rake might be useful if it's in your environment). |
|||||||||||||||||
|