Skip to content

Commit

Permalink
style
Browse files Browse the repository at this point in the history
  • Loading branch information
fisker committed Mar 11, 2020
1 parent 0f5277e commit fc8e2fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rules/consistent-function-scoping.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const isArrowFunctionWithThis = scope =>
scope.type === 'function' &&
scope.block &&
scope.block.type === 'ArrowFunctionExpression' &&
scope.thisFound
scope.thisFound;

function checkNode(node, scopeManager) {
const scope = scopeManager.acquire(node);
Expand Down

0 comments on commit fc8e2fe

Please sign in to comment.