externallyScopedVariableVariable {{name}} not defined in scope of isolated function. Function is isolated because: {{reason}}.small-rules/isolated-functionsPrevent usage of variables from outside the scope of isolated functions.
externallyScopedVariableVariable {{name}} not defined in scope of isolated function. Function is isolated because: {{reason}}.superUnexpected `super` in isolated function. Function is isolated because: {{reason}}.thisExpressionUnexpected `this` in isolated function. Function is isolated because: {{reason}}.This rule accepts one options object after the severity.
const foo = 'hi';makeSynchronous(() => { return foo.slice();});makeSynchronous(() => { const foo = 'hi'; return foo.slice();});