`eslint-plugin-unicorn` user [reported](https://github.com/sindresorhus/eslint-plugin-unicorn/issues/2643) that `unicorn/prefer-includes` crashes on checking ```vue <template><div v-if="values.some(x => x === 'foo')"></div></template> ``` I located the problem, when I use [`context.scopeManager.acquire()`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/9e418adb2cb60205c7c231032af6511379d91a53/rules/shared/simple-array-search-rule.js#L87) to get the callback function scope, it returns `null`. I'm not sure `scopeManager` works here, is it bug? Test added in https://github.com/sindresorhus/eslint-plugin-unicorn/pull/2645, really appreciate it if you can provide some help @ota-meshi