Thank you for your interest in contributing to mongo-error-codes! This document provides guidelines and instructions for contributing.
-
Fork the Repository
Fork the mongo-error-codes repository to your GitHub account. -
Clone Your Fork
git clone https://github.com/dmltdev/mongo-error-codes.git cd mongo-error-codes -
Install Dependencies
npm install
-
Build the Project
npm run build
-
Branch Naming
Create a new branch for your feature or bugfix:git checkout -b feature/your-feature-name
-
Code Style
Ensure your code follows the project's style guidelines defined inbiome.json. -
Testing
Run tests to ensure your changes work as expected:npm test
-
Push Your Changes
git push origin feature/your-feature-name
-
Create a Pull Request
Go to the mongo-error-codes repository and create a pull request from your fork. -
Describe Your Changes
Provide a clear description of your changes and why they are needed. -
Wait for Review
Your PR will be reviewed by maintainers. Be ready to make changes if requested.
-
Commit Messages
Use clear, descriptive commit messages. -
Documentation
Update documentation (e.g., README, API docs) if your changes affect the public API. -
License
By contributing, you agree that your contributions will be licensed under the project's MIT License.
Thank you for contributing!