Skip to content

Commit 0fa93b5

Browse files
author
github-actions
committed
chore(automated): Lint commit and format
1 parent 0290194 commit 0fa93b5

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

example/macos/Flutter/GeneratedPluginRegistrant.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import Foundation
77

88
import path_provider_foundation
99
import shared_preferences_foundation
10-
import sqflite
10+
import sqflite_darwin
1111
import url_launcher_macos
1212

1313
func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) {

lib/src/utils/extensions.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ extension StringExtensions on String? {
9797
final List<String> nameParts = this!.split(RegExp(r'\W+'))..removeWhere((item) => item.isEmpty);
9898
if (nameParts.isEmpty) return '';
9999
return (nameParts.length > 1
100-
// TODO DE: Should the initials be the first letter of the first name and the last name or the second name?
100+
// TODODE: Should the initials be the first letter of the first name and the last name or the second name?
101101
// ? nameParts[0].substring(0, 1) + nameParts[nameParts.length - 1].substring(0, 1)
102102
? nameParts[0].substring(0, 1) + nameParts[1].substring(0, 1)
103103
: nameParts[0].length > 1

test/src/components/avatar/avatar_test.dart

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ void main() {
5858
'Isabella Smith',
5959
];
6060

61-
// TODO DE: We need options for which initials should be displayed. Could use a bitmask?
61+
// TODODE: We need options for which initials should be displayed. Could use a bitmask?
6262
for (final name in names) {
6363
testWidgets(
6464
'ZetaAvatar intiatls show the first letter of the first name and the last name $name',
@@ -150,7 +150,7 @@ void main() {
150150

151151
final avatarSize = tester.getSize(find.byType(ZetaAvatar));
152152
final typeSize = ZetaAvatar.pixelSize(tester.element(find.byType(ZetaAvatar)),
153-
size); //TODO BK butchered this to make pixelSize reusable. Mike, is this ok?
153+
size,); //TODO BK butchered this to make pixelSize reusable. Mike, is this ok?
154154

155155
expect(avatarSize.width, equals(typeSize));
156156
expect(avatarSize.height, equals(typeSize));

0 commit comments

Comments
 (0)