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

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

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

2 مستودعات

Awesome GitHub RepositoriesParameter Naming

Validation of naming patterns for method and constructor parameters.

Distinct from Code Naming Patterns: Targets the names of parameters within a method signature rather than general code identifiers.

Explore 2 awesome GitHub repositories matching part of an awesome list · Parameter Naming. Refine with filters or upvote what's useful.

Awesome Parameter Naming GitHub Repositories

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

    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

    Matches method parameter names against a specified pattern based on visibility levels.

    Javacode-qualitycommand-line-toolhacktoberfest
    عرض على GitHub↗8,867
  • databricks/scala-style-guideالصورة الرمزية لـ databricks

    databricks/scala-style-guide

    2,784عرض على GitHub↗

    Replaces call-by-name parameters with explicit () => T function types to clarify execution semantics.

    عرض على GitHub↗2,784
  1. Home
  2. Part of an Awesome List
  3. Developer Tools
  4. Pattern Matching
  5. Code Naming Patterns
  6. Parameter Naming

استكشف الوسوم الفرعية

  • Call-by-Name Parameter Avoidance RulesCoding conventions that replace call-by-name parameters with explicit function types to clarify execution semantics. **Distinct from Parameter Naming:** Distinct from Parameter Naming: focuses on the type of parameter (call-by-name vs function type), not naming patterns.