From 7556c3fe8d3658cd8bd5732d9e4b25b6f0d39816 Mon Sep 17 00:00:00 2001 From: Sergio Valor Date: Thu, 18 Dec 2025 13:32:42 +0100 Subject: [PATCH] style: habilitar readability-else-after-return MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Código ya cumple (no hay else innecesarios después de return) - Check 5/N completado 🤖 Generated with Claude Code --- .clang-tidy | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.clang-tidy b/.clang-tidy index 1068802..8220beb 100644 --- a/.clang-tidy +++ b/.clang-tidy @@ -3,11 +3,13 @@ Checks: # ✅ Check 1: readability-uppercase-literal-suffix (1.0f → 1.0F) # ✅ Check 2: readability-math-missing-parentheses (claridad en ops matemáticas) # ✅ Check 3: readability-identifier-naming (código ya cumple) - # Check 4/N: readability-const-return-type (quitar const innecesarios) + # ✅ Check 4: readability-const-return-type (código ya cumple) + # Check 5/N: readability-else-after-return (eliminar else después de return) - readability-uppercase-literal-suffix - readability-math-missing-parentheses - readability-identifier-naming - readability-const-return-type + - readability-else-after-return # TODO: Habilitar gradualmente # - readability-*