eslint-plugin-jquery icon indicating copy to clipboard operation
eslint-plugin-jquery copied to clipboard

Disallow jQuery functions with native equivalents.

Results 4 eslint-plugin-jquery issues
Sort by recently updated
recently updated
newest added
trafficstars

https://github.com/dgraham/eslint-plugin-jquery/commit/718e25649d5baf42d8a5a447d4ba58d1d21af6ce#diff-b9cfc7f2cdf78a7f4b91a753d10865a2 is a breaking change, since all peer deps are part of your public API. This broke our builds. Please release v1.5.1 with that commit reverted, and then if you'd...

Thinking about supporting the request in #18, it would currently require a lot of similar changes to each rule to support different jQuery aliases. What are your thoughts on a...

Our existing jQuery-based code has some of cases where it uses `this.$element` to store a reference to a jQuery objects. Our convention is that any variable (or property of our...

Inspections can't detect jQuery usages if non-`$` alias is used Example of a code that can be omitted by `jquery/no-ajax` rule: ```js import jQuery from 'jquery'; jQuery .ajax({ url: url,...