Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

41 lines (30 loc) · 1.7 KB

Contributing to [Project Name]

We welcome contributions to [Project Name]! Whether it's a bug report, new feature, or documentation improvement, your help is greatly appreciated. Please take a moment to read through the guidelines below to make sure your contribution is effective.

How Can You Contribute?

Reporting Bugs

If you've found a bug, please help us by opening a new issue. When filing a bug report, include:

  • A clear and descriptive title.
  • The version of the project and Swift you're using.
  • Steps to reproduce the issue.
  • A detailed description of the problem.
  • Any relevant code snippets or screenshots.

Suggesting Features or Enhancements

We encourage you to suggest new features or enhancements. When submitting feature requests:

  • Explain your idea and why it would be useful.
  • Provide any potential use cases or examples.

If you are able to implement the feature, feel free to open a pull request after discussing it with the maintainers.

Submitting Pull Requests

We encourage pull requests! To help us efficiently review your pull request, please follow these steps:

  1. Fork the repository and clone it locally:
    git clone https://github.com/your-username/project-name.git
    
  2. **Create a new branch for your changes:
     git checkout -b feature-or-bugfix-name
  3. Make your changes, and ensure your code is well-formatted and documented.
  4. Test your changes to make sure everything works as expected: • If you are adding new functionality, write unit tests to cover the new code. • Make sure all existing tests pass by running:
  5. Commit and push your changes with a clear commit message:
git commit -m "Add feature/fix bug: short description"