Home | History | Annotate | Download | only in rules

Lines Matching defs:report

61          * @param {ASTNode} node The node to report.
65 function report(node) {
68 context.report(node, "Identifier '{{name}}' is not in camel case.", { name: node.name });
105 // Always report underscored object names
109 report(node);
111 // Report AssignmentExpressions only if they are the left side of the assignment
117 report(node);
134 report(node);
140 // Report only if the local imported identifier is underscored
142 report(node);
145 // Report anything that is underscored that isn't a CallExpression
147 report(node);