awesome-repositories.com
Blog
awesome-repositories.com

Entdecke die besten Open-Source-Repositories mit KI-gestützter Suche.

EntdeckenKuratierte SuchenOpen-Source-AlternativenSelf-hosted SoftwareBlogSitemap
ProjektÜber unsRanking-MethodikPresseMCP-Server
RechtlichesDatenschutzAGB
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 Repos

Awesome GitHub RepositoriesLoop Variable Protections

Analysis to prevent the modification of loop control variables within the loop body.

Distinct from Loop Vectorization: Prevents a specific coding error (modifying loop counters) rather than providing async primitives or vectorization.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Loop Variable Protections. Refine with filters or upvote what's useful.

Awesome Loop Variable Protections GitHub Repositories

Finde die besten Repos mit KI.Wir suchen mit KI nach den am besten passenden Repositories.
  • checkstyle/checkstyleAvatar von checkstyle

    checkstyle/checkstyle

    8,867Auf GitHub ansehen↗

    Checkstyle is a Java static analysis tool and linter designed to identify and enforce coding standards and best practices. It functions as a code quality auditor and Javadoc validation tool, checking source code against configurable rulesets to ensure structural and stylistic consistency. The project allows for the creation of custom linting rules by extending a core API to inspect the abstract syntax tree. It further enables specialized validation through the use of XPath expressions to query the syntax tree for specific code patterns and violations. Capability areas include the enforcement

    Detects when a primitive for-loop control variable is altered within the loop body.

    Javacode-qualitycommand-line-toolhacktoberfest
    Auf GitHub ansehen↗8,867
  • teivah/100-go-mistakesAvatar von teivah

    teivah/100-go-mistakes

    7,915Auf GitHub ansehen↗

    100 Go Mistakes is a reference book and code review companion that catalogues frequent Go programming anti-patterns and provides corrected implementations for each one. It covers a wide range of common pitfalls, from range loop variable capture and interface nil handling to error wrapping and map iteration randomization, helping developers recognize and avoid these issues in their own code. The project distinguishes itself by offering a structured, example-driven approach to learning idiomatic Go. It covers core design decisions such as when to use pointer versus value receivers, how to apply

    Teaches how to avoid the common Go bug of capturing the same loop variable address in closures.

    Gobookchinesedocumentation
    Auf GitHub ansehen↗7,915
  • crytic/slitherAvatar von crytic

    crytic/slither

    6,141Auf GitHub ansehen↗

    Trail of Bits identifies variables marked as protected that are not actually protected.

    Pythonethereumsoliditystatic-analysis
    Auf GitHub ansehen↗6,141
  1. Home
  2. Software Engineering & Architecture
  3. Loop Variable Protections

Unter-Tags erkunden

  • Range Loop Variable Captures1 Sub-TagUses local copies or index access to avoid pointer aliasing bugs from single-allocated loop variables. **Distinct from Loop Variable Protections:** Distinct from Loop Variable Protections: focuses on the specific Go range loop variable capture pitfall, not general loop variable modification prevention.
  • Unprotected Variable DetectorsIdentifies variables marked as protected that lack actual access control enforcement. **Distinct from Loop Variable Protections:** Distinct from Loop Variable Protections: focuses on access control for protected variables, not loop counter integrity.