Skip to content

Commit 519c5dd

Browse files
committed
Fix
1 parent fe0a4ff commit 519c5dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/custom_lint/lib/src/workspace.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ class CustomLintWorkspace {
478478
if (analyzerMap is! YamlMap) return null;
479479
return analyzerMap['plugins'];
480480
})
481-
.nonNulls
481+
.whereNotNull()
482482
.firstOrNull;
483483

484484
if (enabledPlugins is! YamlList) return false;

0 commit comments

Comments
 (0)