From 2fb3d675b29db38f613e8a87e09b803d245e20c3 Mon Sep 17 00:00:00 2001 From: Dieter Plaetinck Date: Wed, 18 Sep 2024 21:08:47 +0300 Subject: [PATCH] ignore avoid-passing-async-when-sync-expected --- analysis_options.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/analysis_options.yaml b/analysis_options.yaml index 1ff2f92e..8585a974 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -163,6 +163,8 @@ dart_code_metrics: - prefer-prefixed-global-constants: false # we don't really care for the 'k' prefix - prefer-single-widget-per-file: false - avoid-passing-self-as-argument: false # fairly harmless. and e.g. drift calls are like this + - avoid-passing-async-when-sync-expected: false # we really like to do this in onTap() etc, and it seems harmless + formatter: indent: 0 line-length: 100