Disallows the $.support
property.
📋 This rule is enabled in plugin:no-jquery/deprecated-1.9
.
❌ Examples of incorrect code:
$.support;
$.support.style;
✔️ Examples of correct code:
support;
a.support;
support.foo;
a.support.foo;
Disallows the $.support
property.
📋 This rule is enabled in plugin:no-jquery/deprecated-1.9
.
❌ Examples of incorrect code:
$.support;
$.support.style;
✔️ Examples of correct code:
support;
a.support;
support.foo;
a.support.foo;