webhook-action/node_modules/eslint-plugin-github/lib/rules/no-blur.js

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 = []