We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
no-shadow
insertAtPositions()
1 parent cae2524 commit 78b086bCopy full SHA for 78b086b
packages/eslint-plugin-query/src/__tests__/test-utils.ts
@@ -67,7 +67,7 @@ export function generateInterleavedCombinations<
67
}
68
69
function insertAtPositions(
70
- data: Array<TResult>,
+ baseData: Array<TResult>,
71
subset: Array<TResult>,
72
): Array<Array<TResult>> {
73
const combinations: Array<Array<TResult>> = []
@@ -92,7 +92,7 @@ export function generateInterleavedCombinations<
92
93
94
95
- recurse(data, subset, 0)
+ recurse(baseData, subset, 0)
96
return combinations
97
98
0 commit comments