mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-08-25 08:08:00 +00:00
32 lines
742 B
JavaScript
32 lines
742 B
JavaScript
module.exports = {
|
|
meta: {
|
|
docs: {},
|
|
schema: []
|
|
},
|
|
|
|
create(context) {
|
|
return {
|
|
Program() {
|
|
const scope = context.getScope()
|
|
|
|
for (const variable of scope.variables) {
|
|
if (variable.writeable) {
|
|
return
|
|
}
|
|
|
|
for (const def of variable.defs) {
|
|
if (
|
|
def.type === 'FunctionName' ||
|
|
def.type === 'ClassName' ||
|
|
(def.type === 'Variable' && def.parent.kind === 'const') ||
|
|
(def.type === 'Variable' && def.parent.kind === 'let')
|
|
) {
|
|
context.report(def.node, 'Implicit global variable, assign as global property instead.')
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|