Disallows the $.globalEval
utility.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.globalEval();
✔️ Examples of correct code:
globalEval();
'test'.globalEval();
'test'.globalEval;
Disallows the $.globalEval
utility.
📋 This rule is enabled in plugin:no-jquery/all
.
❌ Examples of incorrect code:
$.globalEval();
✔️ Examples of correct code:
globalEval();
'test'.globalEval();
'test'.globalEval;