mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
24 lines
606 B
JavaScript
24 lines
606 B
JavaScript
module.exports = {
|
|
create(context) {
|
|
return {
|
|
CallExpression(node) {
|
|
if (
|
|
node.callee.type === 'MemberExpression' &&
|
|
node.callee.object.property &&
|
|
node.callee.object.property.name === 'classList'
|
|
) {
|
|
const invalidArgument = node.arguments.some(arg => {
|
|
return arg.type === 'Literal' && arg.value === 'd-none'
|
|
})
|
|
if (invalidArgument) {
|
|
context.report({
|
|
node,
|
|
message: 'Prefer hidden property to d-none class'
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|