From e25af7d39cfae5da498bed7b9c493f0532ba9b45 Mon Sep 17 00:00:00 2001 From: Joscha <34318751+josxha@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:10:00 +0200 Subject: [PATCH 1/2] Update flutter_ci.yml --- .github/workflows/flutter_ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/flutter_ci.yml b/.github/workflows/flutter_ci.yml index 88f9af6f..bec52588 100644 --- a/.github/workflows/flutter_ci.yml +++ b/.github/workflows/flutter_ci.yml @@ -30,7 +30,7 @@ jobs: cache: true - uses: bluefireteam/melos-action@v3 - name: Lint analysis - run: melos analyze + run: melos analyze --fatal-warnings --fatal-infos --concurrency 10 build-android: name: "Build Android apk" From 2fdb44ec9897f518bf79d252f618b6b60dd82044 Mon Sep 17 00:00:00 2001 From: Joscha <34318751+josxha@users.noreply.github.com> Date: Wed, 26 Jun 2024 10:15:10 +0200 Subject: [PATCH 2/2] fix lint --- example/lib/map_ui.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/lib/map_ui.dart b/example/lib/map_ui.dart index dc405f5c..fefb4ae0 100644 --- a/example/lib/map_ui.dart +++ b/example/lib/map_ui.dart @@ -99,7 +99,7 @@ class MapUiBodyState extends State { } Widget _myLocationRenderModeCycler() { - final MyLocationRenderMode nextType = MyLocationRenderMode.values[ + final nextType = MyLocationRenderMode.values[ (_myLocationRenderMode.index + 1) % MyLocationRenderMode.values.length]; return TextButton( onPressed: