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

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

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

3 مستودعات

Awesome GitHub RepositoriesDeclaration Sorting

Enforcement of alphabetical or logical ordering of property and type declarations.

Distinct from Lexicographical Sorting: Candidates focus on database key sorting or algorithm implementations, not source code stylistic sorting.

Explore 3 awesome GitHub repositories matching software engineering & architecture · Declaration Sorting. Refine with filters or upvote what's useful.

Awesome Declaration Sorting GitHub Repositories

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

    jsx-eslint/eslint-plugin-react

    9,287عرض على GitHub↗

    This project is an ESLint plugin and static analysis tool designed to enforce best practices, prevent bugs, and maintain code quality in React projects. It functions as a specialized JSX linter that analyzes the syntax and structure of components to detect anti-patterns and API misuse. The plugin distinguishes itself by providing deep analysis of React-specific patterns, such as detecting state race conditions, preventing nested component definitions, and identifying unstable references that cause unnecessary re-renders. It also includes security hardening rules to identify vulnerabilities li

    Requires default property declarations to be ordered alphabetically to make configurations easier to locate.

    JavaScriptdevelopmentecmascripteslint
    عرض على GitHub↗9,287
  • nicklockwood/swiftformatالصورة الرمزية لـ nicklockwood

    nicklockwood/SwiftFormat

    8,835عرض على GitHub↗

    SwiftFormat is a tool for the Swift language that functions as a code formatter, linter, and refactoring utility. It automatically applies consistent style rules and visual formatting to source files to ensure a uniform appearance across a project. The project differentiates itself by providing both a command-line interface for batch processing and an Xcode extension for integration directly into the development environment. It includes specialized capabilities for modernizing legacy API usage, simplifying language constructs, and inferring formatting options by analyzing an existing codebase

    Sorts members within classes and structs by visibility or type and inserts category markers for navigation.

    Swift
    عرض على GitHub↗8,835
  • trivago/prettier-plugin-sort-importsالصورة الرمزية لـ trivago

    trivago/prettier-plugin-sort-imports

    3,944عرض على GitHub↗

    This project is a Prettier plugin designed to alphabetize, group, and format module import statements in JavaScript and TypeScript files. It functions as an automated import organizer that ensures consistent declaration order and spacing across a project. The plugin uses custom regular expression patterns to sequence dependency imports into logical groups, allowing for the separation of internal and external modules. It supports the preservation of side-effect imports and provides the ability to sort individual named members within a single declaration by string length or alphabetization. Us

    Sorts individual named members within a single import declaration by string length or alphabetization.

    TypeScripthacktoberfestimportjavascript
    عرض على GitHub↗3,944
  1. Home
  2. Software Engineering & Architecture
  3. Declaration Sorting

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

  • Specifier SortingAlphabetizing or length-sorting individual named members within a single import declaration. **Distinct from Declaration Sorting:** Distinct from Declaration Sorting: focuses on sorting the members inside the curly braces of a single import, not the order of the import statements themselves.