From 875d538dbcc55548d3e05775744f2198f7c4e476 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Mon, 25 Sep 2023 13:04:37 -0700 Subject: [PATCH] lint: Enable no_literal_bool_comparisons Docs: https://dart.dev/tools/linter-rules/no_literal_bool_comparisons --- analysis_options.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analysis_options.yaml b/analysis_options.yaml index 837a5b3fac..68023715f1 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -23,7 +23,7 @@ linter: # producing the lint. rules: # avoid_print: false # Uncomment to disable the `avoid_print` rule - # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + no_literal_bool_comparisons: true prefer_relative_imports: true # Additional information about this file can be found at