Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 1.67 KB

CONTRIBUTING.md

File metadata and controls

53 lines (34 loc) · 1.67 KB

Contributing to tmag5273

Thank you for considering contributing to the tmag5273 project! We welcome contributions from everyone. Below are some guidelines to help you get started.

How to Contribute

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

  2. Clone your fork:

    git clone https://github.com/your-username/tmag5273.git
  3. Create a branch:

    git checkout -b your-feature-branch
  4. Make your changes: Implement your feature or bug fix.

  5. Commit your changes:

    git add .
    git commit -m "Description of your changes"
  6. Push to your fork:

    git push --set-upstream origin your-feature-branch
  7. Create a Pull Request: Go to the original repository and click the "New Pull Request" button.

Code Style

  • Follow the existing code style. This can be done by running mega-linter-runner --fix before your commit. This check will also run in the CI when doing a merge and point out any fixes that are required. More information on MegaLinter can be found here
  • Write clear and concise commit messages.
  • Include comments where necessary.

Reporting Issues

If you find a bug or have a feature request, please create an issue on the Issues page.

Code of Conduct

Please note that this project is released with a Contributor Code of Conduct. By participating in this project, you agree to abide by its terms.

Thank you for your contributions!