From cc54fcc35efc7620f5e12ebb82c9ee328d5c95db Mon Sep 17 00:00:00 2001 From: Ryota Kobayashi <45661924+naipaka@users.noreply.github.com> Date: Mon, 16 Dec 2024 19:17:41 +0900 Subject: [PATCH] feat: Disable specify_nonobvious_local_variable_types to avoid conflicts (#80) --- packages/altive_lints/lib/altive_lints.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/altive_lints/lib/altive_lints.yaml b/packages/altive_lints/lib/altive_lints.yaml index c532ef3..363938a 100644 --- a/packages/altive_lints/lib/altive_lints.yaml +++ b/packages/altive_lints/lib/altive_lints.yaml @@ -58,6 +58,9 @@ linter: # Too verbose. Use avoid_final_parameters prefer_final_parameters: false + # Conflicts with `omit_local_variable_types` + specify_nonobvious_local_variable_types: false + # Incompatible with `prefer_final_locals` # Having immutable local variables makes larger functions more predictable # so we will use `prefer_final_locals` instead.