Skip to content

Commit

Permalink
Update .madgerc to skip async imports in ts and
Browse files Browse the repository at this point in the history
tsx files
  • Loading branch information
mvladic committed Nov 25, 2023
1 parent 7c623f6 commit 827ff8b
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .madgerc
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
{
"detectiveOptions": {
"ts": {
"skipTypeImports": true
},
"tsx": {
"skipTypeImports": true
}
}
"detectiveOptions": {
"ts": {
"skipTypeImports": true,
"skipAsyncImports": true
},
"tsx": {
"skipTypeImports": true,
"skipAsyncImports": true
}
}
}

0 comments on commit 827ff8b

Please sign in to comment.