Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 904 Bytes

CONTRIBUTING.md

File metadata and controls

25 lines (19 loc) · 904 Bytes

Contributing to Impactifier

Thank you for considering contributing to Impactifier! Here are some guidelines:

How to Contribute

  1. Fork the repository.
  2. Create a new branch: git checkout -b feature-xyz.
  3. Commit your changes: git commit -m "Add feature XYZ".
  4. Push the branch: git push origin feature-xyz.
  5. Open a pull request and include a detailed description of your changes.

Code Style

  • Follow Rust's standard style guidelines (use rustfmt).
  • Ensure code is well-documented with comments.

Reporting Issues

  • Use GitHub Issues to report bugs, feature requests, or suggestions.
  • Provide as much detail as possible to help reproduce the issue.

Testing

  • Include unit tests for all core functionality.
  • Run cargo test to ensure all tests pass before submitting a pull request.

Review Process

  • PRs needs to be approved by atleast one maintainer before merging.