awesome-repositories.com
博客
awesome-repositories.com

通过 AI 驱动的搜索,发现最优秀的开源仓库。

探索精选搜索开源替代品自托管软件博客网站地图
项目关于排名机制媒体报道MCP 服务器
法律隐私政策服务条款
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

2 个仓库

Awesome GitHub RepositoriesRedundant Initialization Detection

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.

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

Awesome Redundant Initialization Detection GitHub Repositories

用 AI 发现最棒的仓库。我们将通过 AI 为您搜索最匹配的仓库。
  • checkstyle/checkstylecheckstyle 的头像

    checkstyle/checkstyle

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

    Javacode-qualitycommand-line-toolhacktoberfest
    在 GitHub 上查看↗8,867
  • larastan/larastanlarastan 的头像

    larastan/larastan

    6,430在 GitHub 上查看↗

    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
  6. Redundant Initialization Detection

探索子标签

  • Redundant Instantiation DetectionDetects inefficient object creation patterns where simpler instantiation is possible. **Distinct from Redundant Initialization Detection:** Distinct from Redundant Initialization Detection by focusing on the method of creating the object (static vs new) rather than assigning default values.