Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 697 Bytes

File metadata and controls

29 lines (21 loc) · 697 Bytes

Contributing Guide

Workflow

  1. Fork the repository.
  2. Create a feature branch.
  3. Implement your changes with focused commits.
  4. Validate local build:
npm install
npm run build
  1. Open a Pull Request with a clear description.

Contribution Standards

  • Keep architecture boundaries clear (components, services, data, types).
  • Avoid mixing UI concerns with algorithm/data logic.
  • Prefer readable names and small, cohesive functions.
  • Update documentation when behavior changes.

Pull Request Checklist

  • Build succeeds locally.
  • No unrelated file changes included.
  • Documentation updated when relevant.
  • Screenshots added for UI changes.