You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This would be much more efficient: target('src/**/*.kt'). It lets you remove the targetExclude, and it will search a smaller set of files. We have tried to remove all leading **/*.blah from our examples, because there's almost always some prefix that can make things a lot faster.
The text was updated successfully, but these errors were encountered:
ComposeGuard/compose-guard/build.gradle.kts
Lines 26 to 30 in 7683227
This would be much more efficient:
target('src/**/*.kt')
. It lets you remove thetargetExclude
, and it will search a smaller set of files. We have tried to remove all leading**/*.blah
from our examples, because there's almost always some prefix that can make things a lot faster.The text was updated successfully, but these errors were encountered: