Guides
Contributing
Guidelines for contributing to Monorepo Boilerplate.
We welcome contributions to Monorepo Boilerplate! Please follow these guidelines to ensure a smooth collaboration.
Code Style
- Commits: We follow the Conventional Commits specification.
feat: add user loginfix: resolve cors issuedocs: update readme
- Linting: Prettier and ESLint are enforced via pre-commit hooks (husky + lint-staged). Do not bypass them.
Workflow
- Fork & Clone: Fork the repo and clone it locally.
- Branch: Create a feature branch (
git checkout -b feat/my-feature). - Develop: Make your changes.
- Test: Ensure tests pass (
pnpm test). - Commit: Commit your changes using conventional commits.
- Push: Push to your fork.
- PR: Open a Pull Request against the
developbranch (ormainif specified).
Pull Request Guidelines
- Provide a clear description of what the PR does.
- Link to any related issues.
- Ensure CI checks pass.
- Reviewers will provide feedback; please address it promptly.