mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
12 lines
305 B
JavaScript
12 lines
305 B
JavaScript
module.exports = function(context) {
|
|
return {
|
|
CallExpression(node) {
|
|
if (node.callee.property && node.callee.property.name === 'blur') {
|
|
context.report(node, 'Do not use element.blur(), instead restore the focus of a previous element.')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports.schema = []
|