SonarSource Rules
  • Products

    In-IDE

    Code Quality and Security in your IDE with SonarQube Ide

    IDE extension that lets you fix coding issues before they exist!

    Discover SonarQube for IDE

    SaaS

    Code Quality and Security in the cloud with SonarQube Cloud

    Setup is effortless and analysis is automatic for most languages

    Discover SonarQube Cloud

    Self-Hosted

    Code Quality and Security Self-Hosted with SonarQube Server

    Fast, accurate analysis; enterprise scalability

    Discover SonarQube Server
  • SecretsSecrets
  • ABAPABAP
  • AnsibleAnsible
  • ApexApex
  • AzureResourceManagerAzureResourceManager
  • CC
  • C#C#
  • C++C++
  • CloudFormationCloudFormation
  • COBOLCOBOL
  • CSSCSS
  • DartDart
  • DockerDocker
  • FlexFlex
  • GitHub ActionsGitHub Actions
  • GoGo
  • HTMLHTML
  • JavaJava
  • JavaScriptJavaScript
  • JSONJSON
  • JCLJCL
  • KotlinKotlin
  • KubernetesKubernetes
  • Objective CObjective C
  • PHPPHP
  • PL/IPL/I
  • PL/SQLPL/SQL
  • PythonPython
  • RPGRPG
  • RubyRuby
  • RustRust
  • ScalaScala
  • ShellShell
  • SwiftSwift
  • TerraformTerraform
  • TextText
  • TypeScriptTypeScript
  • T-SQLT-SQL
  • VB.NETVB.NET
  • VB6VB6
  • XMLXML
  • YAMLYAML
Go

Go static code analysis

Unique rules to find Bugs, Vulnerabilities, Security Hotspots, and Code Smells in your GO code

  • All rules 94
  • Vulnerability21
  • Bug13
  • Security Hotspot14
  • Code Smell46
Filtered: 3 rules found
design
    Impact
      Clean code attribute
        1. Named types should be used instead of anonymous structs for complex nested structures

           Code Smell
        2. Two branches in a conditional structure should not have exactly the same implementation

           Code Smell
        3. String literals should not be duplicated

           Code Smell

        Named types should be used instead of anonymous structs for complex nested structures

        intentionality - clear
        maintainability
        Code Smell
        • design

        This rule raises an issue when complex nested anonymous structs are used in field definitions, making code harder to read, reuse, and maintain.

        Why is this an issue?

        How can I fix it?

        More Info

        Anonymous structs can make code harder to understand and maintain, especially when they contain multiple fields or are nested within other structs.

        When you use anonymous structs for complex data structures, you create several problems:

        • Poor readability: Nested anonymous structs create deeply indented code that is difficult to scan and understand quickly.
        • No reusability: Anonymous structs cannot be reused across different parts of your codebase, leading to code duplication.
        • Testing difficulties: You cannot easily create instances of anonymous struct types in test files, often forcing you to duplicate the struct definition.
        • Limited documentation: Anonymous structs cannot have their own methods or be documented separately, reducing code clarity.

        Named types solve these issues by providing clear, reusable definitions that can be documented, tested, and maintained independently. They also make your code more modular and easier to refactor.

        What is the potential impact?

        Using anonymous structs for complex nested structures reduces code maintainability and readability. It can lead to code duplication across files, make testing more difficult, and create confusion for developers working with the codebase.

          Available In:
        • SonarQube CloudDetect issues in your GitHub, Azure DevOps Services, Bitbucket Cloud, GitLab repositories

        © 2025 SonarSource Sàrl. All rights reserved.

        Privacy Policy | Cookie Policy | Terms of Use