Skip to content

Latest commit

 

History

History
64 lines (46 loc) · 1.68 KB

contributing.md

File metadata and controls

64 lines (46 loc) · 1.68 KB

Contributing to Your Project Name

Thank you for your interest in contributing to Your Project Name! We welcome both bug reports and pull requests.

How to Contribute

Reporting Bugs

  1. Search Existing Issues: Before reporting a bug, please check if it has already been reported.
  2. Provide Detailed Information: Include steps to reproduce the bug, expected behavior, and actual behavior.
  3. Include Screenshots: Visuals can help in understanding the issue better.

Suggesting Enhancements

  1. Search for Existing Suggestions: Ensure your idea hasn't been suggested already.
  2. Describe the Enhancement: Explain the improvement and its benefits.

Submitting Pull Requests

  1. Fork the Repository: Click the "Fork" button at the top right of the repository page.

  2. Create a Feature Branch:

    git checkout -b feature/your-feature-name   ```
  3. Commit Your Changes:

    git commit -m "Add your commit message here"   ```
  4. Push to the Branch:

    git push origin feature/your-feature-name   ```
  5. Create a Pull Request: Navigate to the repository on GitHub and click "Compare & pull request."

Coding Standards

  • Linting: Ensure your code passes all linting checks by running:

    npm run lint  ```
  • Testing: Write tests for your changes and ensure all tests pass:

    npm test  ```

Code Review

All pull requests are subject to review by project maintainers. Please be patient and address any feedback provided.

License

By contributing, you agree that your contributions will be licensed under the MIT License.