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
Copy file name to clipboardExpand all lines: compose-stability-analyzer-idea/src/main/kotlin/com/skydoves/compose/stability/idea/toolwindow/StabilityToolWindow.kt
+18Lines changed: 18 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -163,10 +163,21 @@ public class StabilityToolWindow(private val project: Project) {
163
163
}
164
164
165
165
privatefunapplyFilter() {
166
+
// Get ignored patterns from settings
167
+
val settings = com.skydoves.compose.stability.idea.settings.StabilitySettingsState.getInstance()
168
+
val ignoredPatterns = settings.getIgnoredPatternsAsRegex()
169
+
170
+
// Filter composables based on current filter type and ignored patterns
0 commit comments