awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

1 مستودع

Awesome GitHub RepositoriesDead Code Refactoring

Using static analysis to identify and remove large blocks of unused code to improve maintainability.

Distinct from Python Refactoring Libraries: Focuses specifically on pruning dead logic rather than general symbol renaming or refactoring libraries.

Explore 1 awesome GitHub repository matching software engineering & architecture · Dead Code Refactoring. Refine with filters or upvote what's useful.

Awesome Dead Code Refactoring GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • jendrikseipp/vultureالصورة الرمزية لـ jendrikseipp

    jendrikseipp/vulture

    4,655عرض على GitHub↗

    Vulture is a static analysis tool and linter designed to find unused variables, functions, and classes in Python source code. It operates as a dead code detector and unused code finder that scans source files to identify unreachable expressions and imports without executing the code. The tool employs a confidence-based heuristic scoring system to assign probability values to detections, helping to distinguish truly unused symbols from potential false positives. It further assists in pruning dead logic by sorting detected unused classes and functions by line count to prioritize the removal of

    Assists in pruning dead logic by prioritizing the removal of the largest blocks of unused code.

    Pythondead-code-removalpython
    عرض على GitHub↗4,655
  1. Home
  2. Software Engineering & Architecture
  3. Automated Refactoring Tools
  4. Python Refactoring Libraries
  5. Dead Code Refactoring