.gemini/styleguide.md
This document defines the coding standards and best practices for the AionUI project. The AI code reviewer should use these guidelines when reviewing pull requests.
any type - use unknown or proper generics?.) and nullish coalescing (??)useMemo and useCallback for expensive computationssrc/
├── common/ # Shared utilities and types
├── process/ # Main process code (Electron)
├── renderer/ # Renderer process code (React)
│ ├── components/ # Reusable UI components
│ ├── hooks/ # Custom React hooks
│ ├── pages/ # Page components
│ └── i18n/ # Internationalization
└── agent/ # AI agent related code
Follow Conventional Commits:
feat: - New featurefix: - Bug fixdocs: - Documentationstyle: - Code style (formatting, etc.)refactor: - Code refactoringperf: - Performance improvementtest: - Testschore: - Maintenance tasksWhen reviewing code, prioritize in this order: