Skip to content

Commit 95ccf71

Browse files
committed
Fix analysis warnings
1 parent bbf3d8f commit 95ccf71

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

sqlite3/analysis_options.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
include: package:lints/recommended.yaml
22

33
analyzer:
4-
strong-mode:
5-
implicit-casts: false
6-
implicit-dynamic: false
4+
language:
5+
strict-casts: true
6+
strict-raw-types: true
77

88
linter:
99
rules:

sqlite3/lib/src/wasm/js_interop/file_system_access.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ extension FileSystemDirectoryHandleApi on FileSystemDirectoryHandle {
103103
}
104104

105105
Stream<FileSystemHandle> list() {
106-
return AsyncJavaScriptIteratable<List>(this)
106+
return AsyncJavaScriptIteratable<List<Object?>>(this)
107107
.map((data) => data[1] as FileSystemHandle);
108108
}
109109

0 commit comments

Comments
 (0)