Alternative to jQuery Lint?

513 Views Asked by At

I'm wondering if there is an alternative to jQuery Lint which is able to perform static analysis rather than runtime/in-browser analysis, i.e. I want a tool which doesn't need to run in a browser and can analyse the source code of an entire project.

My problem is that I have a large number of pages/scripts using a few different versions of jQuery ranging from 1.2 up to 1.7 and I want to migrate them all to the latest version of jQuery. But before I do that, I want to know if the code is using any deprecated/removed jQuery functionality or using jQuery in a way that has changed since version 1.2, e.g. [@attr] style selectors which were removed in jQuery v1.3.

It is not feasible for me to open every single page and follow every execution path using jQuery Lint to get its output.

0

There are 0 best solutions below