Contributing to gkwreg
Source:CONTRIBUTING.md
Thank you for your interest in contributing to gkwreg! This document provides guidelines for contributing to the project.
How to Contribute
Reporting Bugs
If you find a bug, please open an issue on GitHub Issues with:
- A clear, descriptive title
- Steps to reproduce the behavior
- Expected vs. actual behavior
- Your R session info (
sessionInfo()) - Minimal reproducible example (reprex)
Suggesting Enhancements
Enhancement suggestions are tracked as GitHub issues. When creating an enhancement suggestion, please include:
- A clear description of the proposed feature
- Rationale for why this would be valuable
- Example use cases
- Any relevant references or implementations in other packages
Pull Requests
- Fork the repository
-
Create a branch for your feature (
git checkout -b feature/AmazingFeature) -
Make your changes:
- Follow the existing code style
- Add tests for new functionality
- Update documentation as needed
- Run
R CMD checkto ensure no errors
-
Commit your changes (
git commit -m 'Add some AmazingFeature') -
Push to your branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Code Style
- Follow Tidyverse Style Guide
- Use meaningful variable names
- Document all exported functions with roxygen2
- Include examples in documentation
- Add comments for complex algorithms
Code of Conduct
This project adheres to a Code of Conduct (see CODE_OF_CONDUCT.md). By participating, you are expected to uphold this code.
Questions?
Feel free to open an issue for questions or contact the maintainer at evandeilton@gmail.com.