mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
17 lines
317 B
JavaScript
17 lines
317 B
JavaScript
module.exports = {
|
|
meta: {
|
|
docs: {},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
MemberExpression(node) {
|
|
if (node.property && node.property.name === 'dataset') {
|
|
context.report(node, "Use getAttribute('data-your-attribute') instead of dataset.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|