Skip to content

Latest commit

 

History

History
45 lines (33 loc) · 1.44 KB

CONTRIBUTING.md

File metadata and controls

45 lines (33 loc) · 1.44 KB

Contributing to Absurd Expansions

Thank you for considering contributing to Absurd Expansions! We welcome contributions from everyone. Here are some guidelines to help you get started:

How to Contribute

  1. Fork the Repository: Create a personal fork of the project on GitHub.
  2. Clone the Fork: Clone your fork to your local machine.
    git clone https://github.com/your-username/absurd-expansions.git
  3. Create a Branch: Create a new branch for your changes.
    git checkout -b feature/your-feature-name
  4. Make Changes: Make your changes to the codebase.
  5. Commit Changes: Commit your changes with a clear and concise commit message.
    git commit -m "Add feature: your feature name"
  6. Push Changes: Push your changes to your fork.
    git push origin feature/your-feature-name
  7. Create a Pull Request: Open a pull request to the main repository.

Code of Conduct

Please read and follow our Code of Conduct to ensure a welcoming environment for all contributors.

Reporting Issues

If you find a bug or have a feature request, please open an issue on GitHub.

Style Guide

  • Follow the existing code style.
  • Write clear and concise commit messages.
  • Include comments and documentation where necessary.

Testing

Ensure that your changes do not break existing tests and add new tests for new features.

Thank you for your contributions!