From f18c261c1905ddb419714b0726eee19d54bceebd Mon Sep 17 00:00:00 2001 From: Parker Lougheed Date: Thu, 15 Jun 2023 14:36:59 -0500 Subject: [PATCH] Switch away from deprecated strong mode options --- analysis_options.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index e0cef02..b49c352 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -1,6 +1,7 @@ include: package:flutter_lints/flutter.yaml analyzer: - strong-mode: - implicit-casts: false - implicit-dynamic: false + language: + strict-casts: true + strict-inference: true + strict-raw-types: true