Disallows the .css method and $.css utility. Prefer Window#getComputedStyle.
📋 This rule is enabled in plugin:no-jquery/all.
❌ Examples of incorrect code:
$.css();
$( 'div' ).css();
$div.css();
$( 'div' ).first().css();
$( 'div' ).append( $( 'input' ).css() );✔️ Examples of correct code:
css();
[].css();
div.css();
div.css;