You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
style(codebase): apply consistent formatting and import organization
This commit introduces a series of stylistic improvements across the codebase to enforce consistency, improve readability, and maintain a clean project structure. The changes are focused on import ordering, code formatting, and minor structural refactoring without altering any functional behavior.
Key modifications include:
- **Import Organization**: Standardized import ordering by separating external dependencies (like `effect`) from internal or framework-specific imports (e.g., `@codeeditorland/output/...`), as seen in `DesktopMain.ts`, `Bridge.ts`, and `Storage.ts`.
- **Formatting Adjustments**: Applied consistent indentation and line breaks in configuration files (`Wind.js` and `Target.ts`) for better visual clarity and maintenance. This includes splitting long lines (e.g., the `On` constant definition) and reformatting objects and arrays.
- **Code Style Refinements**: Simplified class declaration syntax in `TreeView/Define.ts` by consolidating a multi-line `implements` clause into a single line, adhering to a more concise style.
- **Whitespace Management**: Added strategic blank lines after import blocks in `Problem.ts` files to enhance readability and separation of concerns.
- **Import Statement Optimization**: Reorganized and split complex import statements in `Provider.ts` for better legibility.
All changes are purely cosmetic, ensuring the codebase remains clean and maintainable while preserving existing functionality.
0 commit comments