mirror of
https://github.com/facebook/react.git
synced 2026-02-21 19:31:52 +00:00
Merge 6f1022d614 into sapling-pr-archive-jorge-cab
This commit is contained in:
@@ -7913,6 +7913,25 @@ const testsFlow = {
|
||||
}
|
||||
`,
|
||||
},
|
||||
// Flow type aliases in type assertions should not be flagged as missing dependencies
|
||||
{
|
||||
code: normalizeIndent`
|
||||
function MyComponent() {
|
||||
type ColumnKey = 'id' | 'name';
|
||||
type Item = {id: string, name: string};
|
||||
|
||||
const columns = useMemo(
|
||||
() => [
|
||||
{
|
||||
type: 'text',
|
||||
key: 'id',
|
||||
} as TextColumn<ColumnKey, Item>,
|
||||
],
|
||||
[],
|
||||
);
|
||||
}
|
||||
`,
|
||||
},
|
||||
],
|
||||
invalid: [
|
||||
{
|
||||
|
||||
@@ -21,7 +21,7 @@ import type {
|
||||
VariableDeclarator,
|
||||
} from 'estree';
|
||||
|
||||
import { getAdditionalEffectHooksFromSettings } from '../shared/Utils';
|
||||
import {getAdditionalEffectHooksFromSettings} from '../shared/Utils';
|
||||
|
||||
type DeclaredDependency = {
|
||||
key: string;
|
||||
@@ -80,7 +80,6 @@ const rule = {
|
||||
const rawOptions = context.options && context.options[0];
|
||||
const settings = context.settings || {};
|
||||
|
||||
|
||||
// Parse the `additionalHooks` regex.
|
||||
// Use rule-level additionalHooks if provided, otherwise fall back to settings
|
||||
const additionalHooks =
|
||||
@@ -565,8 +564,12 @@ const rule = {
|
||||
continue;
|
||||
}
|
||||
// Ignore Flow type parameters
|
||||
// @ts-expect-error We don't have flow types
|
||||
if (def.type === 'TypeParameter') {
|
||||
if (
|
||||
// @ts-expect-error We don't have flow types
|
||||
def.type === 'TypeParameter' ||
|
||||
// @ts-expect-error Flow-specific AST node type
|
||||
dependencyNode.parent?.type === 'GenericTypeAnnotation'
|
||||
) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user