Require a $ before variable names that are jquery assignments.
Types: Boolean or String
Values: true or "ignoreProperties"
"requireDollarBeforejQueryAssignment": true
truevar $x = $(".foo");
var y = {
$x: $(".bar")
};
truevar x = $(".foo");
var y = {
x: $(".bar")
};
ignorePropertiesvar $x = $(".foo");
var y = {
x: $(".bar")
};
ignorePropertiesvar x = $(".foo");