Skip to content

Commit 322cb56

Browse files
committed
Update formatter to use 100 chars as page width
Also oopsie forgot to update a lint fix
1 parent a413847 commit 322cb56

23 files changed

+258
-696
lines changed

analysis_options.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ linter:
2424
unnecessary_lambdas: true
2525
unnecessary_parenthesis: true
2626
use_named_constants: true
27-
use_super_parameters: true
27+
use_super_parameters: true
28+
29+
formatter:
30+
page_width: 100

lib/backend/database/helper.dart

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,5 @@ class EntityStatCacheHelper {
1616
return stat;
1717
}
1818

19-
Future<void> set(EntityStat entity) =>
20-
isar.writeTxn(() => isar.entityStats.put(entity));
19+
Future<void> set(EntityStat entity) => isar.writeTxn(() => isar.entityStats.put(entity));
2120
}

0 commit comments

Comments
 (0)