awesome-repositories.com
Blog
awesome-repositories.com

Descoperă cele mai bune repository-uri open source cu căutare AI.

ExploreazăCăutări recomandateAlternative open-sourceSoftware self-hostedBlogHartă site
ProiectDespreCum realizăm clasamentulPresăServer MCP
LegalConfidențialitateTermeni
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

3 repository-uri

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

Găsește cele mai bune repo-uri cu AI.Vom căuta cele mai potrivite repository-uri folosind AI.
  • checkstyle/checkstyleAvatar checkstyle

    checkstyle/checkstyle

    8,867Vezi pe GitHub↗

    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
    Vezi pe GitHub↗8,867
  • teivah/100-go-mistakesAvatar teivah

    teivah/100-go-mistakes

    7,915Vezi pe GitHub↗

    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
    Vezi pe GitHub↗7,915
  • crytic/slitherAvatar crytic

    crytic/slither

    6,141Vezi pe GitHub↗

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

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

Explorează sub-etichetele

  • 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.