awesome-repositories.com
ब्लॉग
awesome-repositories.com

AI-संचालित खोज के साथ बेहतरीन ओपन-सोर्स रिपॉजिटरी खोजें।

एक्सप्लोर करेंक्यूरेटेड खोजेंओपन-सोर्स विकल्पसेल्फ-होस्टेड सॉफ्टवेयरब्लॉगसाइटमैप
प्रोजेक्टहमारे बारे मेंहम रैंकिंग कैसे करते हैंप्रेसMCP सर्वर
कानूनीगोपनीयताशर्तें
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 रिपॉजिटरी

Awesome GitHub RepositoriesInitialization Pattern Detections

Identifies problematic initialization patterns, such as double brace initialization, to prevent memory leaks.

Distinct from Instance Variable Initializers: Distinct from Instance Variable Initializers: detects an anti-pattern of initialization rather than providing standard variable assignment.

Explore 2 awesome GitHub repositories matching programming languages & runtimes · Initialization Pattern Detections. Refine with filters or upvote what's useful.

Awesome Initialization Pattern Detections GitHub Repositories

AI के साथ बेहतरीन रिपॉजिटरी खोजें।हम AI का उपयोग करके सबसे सटीक रिपॉजिटरी खोजेंगे।
  • checkstyle/checkstylecheckstyle का अवतार

    checkstyle/checkstyle

    8,867GitHub पर देखें↗

    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 and flags members that are explicitly assigned to their default type values.

    Javacode-qualitycommand-line-toolhacktoberfest
    GitHub पर देखें↗8,867
  • larastan/larastanlarastan का अवतार

    larastan/larastan

    6,430GitHub पर देखें↗

    Larastan is a static analysis extension and type inference engine for PHP designed to detect bugs and type errors in Laravel applications. It extends PHPStan to resolve framework-specific patterns and magic methods, providing a rule-based scanning engine to audit code quality without executing the application. The tool specializes in Eloquent analysis, verifying that model properties, casts, and relationships align with database schemas and migrations. It tracks types across Eloquent collections, custom builders, and model factories to ensure type safety during database operations and iterati

    Flags the use of static creation methods where a simple new instance is more efficient.

    PHP
    GitHub पर देखें↗6,430
  1. Home
  2. Programming Languages & Runtimes
  3. Instance Initialization Hooks
  4. Instance Variable Initializers
  5. Initialization Pattern Detections

सब-टैग एक्सप्लोर करें

  • Redundant Initialization Detection1 सब-टैगIdentifies variables explicitly assigned to their default type values to remove unnecessary code. **Distinct from Initialization Pattern Detections:** Focuses on redundant default value assignments rather than problematic memory-leak patterns like double-brace initialization.