mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-12-02 04:15:23 +01:00
1ada95e04a
- Convert project to Javascript/Typescript - Allow custom headers to be passed in (optional) - Allow body to be optional
16 lines
317 B
JavaScript
16 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.")
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|