Skip to content

Latest commit

 

History

History
58 lines (38 loc) · 1.7 KB

CONTRIBUTING.md

File metadata and controls

58 lines (38 loc) · 1.7 KB

Contribution Guidelines

Thank you for considering contributing to our project! We welcome contributions from everyone.

Before making contributions, please ensure that:

  1. Your code adheres to our formatting guidelines.
  2. Your code passes all existing tests.
  3. You have reviewed our existing documentation and have made updates if necessary.

How to Contribute

  1. Fork the repository to your GitHub account.
  2. Clone the forked repository to your local machine:
git clone https://github.com/shahen94/craft
  1. Create a new branch for your changes:
    git checkout -b feature/your-feature
  2. Make your changes and ensure they adhere to the project guidelines.
  3. Commit your changes:
git commit -am "Add your descriptive commit message"
  1. Push to your forked repository:
git push origin feature/your-feature
  1. Create a new pull request on the original repository's GitHub page.

Coding Guidelines

  • Follow the existing coding style and conventions.
  • Ensure your code is well-documented, especially for new features or changes.
  • Make sure to write clear commit messages that describe the changes being made.

Testing

  • Before submitting a pull request, ensure that all existing tests pass.
  • Write additional tests for new features or changes as necessary.

Reporting Issues

If you encounter any bugs, issues, or have suggestions for improvements, please open an issue on our GitHub repository.

Community Guidelines

Be respectful and considerate of others' contributions. We encourage constructive feedback and collaboration.

Thank you for your interest in contributing to our project!