Contributing Guidelines
Guidelines for contributing code and submitting changes.
Development Workflow
- Fork this repository and clone it.
- Create a branch:
git checkout -b feature/your-feature. - Verify lint and run testing builds locally before making a commit.
- Keep commits small and document refactors or architectural shifts.
- Create a Pull Request against the
mainbranch.
Code Standards
- Strict Decoupling: Keep presentation modules pure and free of platform WebView binding references.
- Typing: Make full use of TypeScript definitions inside the core architecture in
src/. - Standard Naming Rules:
- Prefix shared elements with
app_ - Prefix anime-specific elements with
anime_ - Prefix movies-specific elements with
movies_
- Prefix shared elements with
