Skip to content

Commit

Permalink
exhaustive-deps: Add passing test for generic type arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon committed Oct 2, 2022
1 parent 9c3de25 commit 3ceb237
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7722,6 +7722,16 @@ const testsTypescript = {
}
`,
},
{
code: normalizeIndent`
function useMyThing<T>(): void {
useEffect(() => {
let foo: T;
console.log(foo);
}, []);
}
`,
},
],
invalid: [
{
Expand Down

0 comments on commit 3ceb237

Please sign in to comment.