mirror of
https://github.com/github/codeql-action.git
synced 2025-12-22 23:30:05 +08:00
Regenerating node_modules
This commit is contained in:
24
node_modules/eslint-plugin-github/lib/rules/async-preventdefault.js
generated
vendored
Normal file
24
node_modules/eslint-plugin-github/lib/rules/async-preventdefault.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
module.exports = {
|
||||
meta: {
|
||||
docs: {},
|
||||
schema: []
|
||||
},
|
||||
|
||||
create(context) {
|
||||
const scopeDidWait = new WeakSet()
|
||||
|
||||
return {
|
||||
AwaitExpression() {
|
||||
scopeDidWait.add(context.getScope(), true)
|
||||
},
|
||||
CallExpression(node) {
|
||||
if (node.callee.property && node.callee.property.name === 'preventDefault') {
|
||||
const scope = context.getScope()
|
||||
if (scope.block.async && scopeDidWait.has(scope)) {
|
||||
context.report(node, 'event.preventDefault() inside an async function is error prone')
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user