Contributing to AF-Analysis
We appreciate your interest in contributing to AF-Analysis! This guide details how to contribute to the AF-Analysis project in a way that is efficient for everyone.
Table of Contents
Code of Conduct
All contributors are expected to adhere to the project’s Code of Conduct. Please read the document before contributing.
Getting Started
Fork the project repository and clone your fork:
git clone git@github.com:samuelmurail/af_analysis
Create a new branch for your changes:
git checkout -b name-of-your-branch
Make your changes and commit them:
git commit -m "Detailed commit message"
Push your changes to your fork:
git push origin name-of-your-branch
Create a pull request from your branch to the AF-Analysis main branch.
How Can I Contribute?
There are many ways you can contribute, beyond writing code. If you can write, draw, design, or organize, we would love your help. Here are some ways to contribute:
Improve documentation
Fix bugs or add new features
Design UI or graphics
Write tutorials or blog posts
Review code submissions
Test the application and report issues
Style Guide
We use the Black code formatter for this project. Please ensure your contributions adhere to this standard before submitting a pull request. You can check and format your code using Black:
black your_file.py
Black will automatically format your code to meet the style guide.
Pull Requests
Pull requests are the best way to propose changes to the codebase. We actively welcome your pull requests:
Fork the repo and create your branch from
main.If you’ve added code that should be tested, add tests.
If you’ve changed APIs, update the documentation.
Ensure the test suite passes.
Make sure your code lints and is formatted with Black.
Issue that pull request!
Issue Tracking
We use GitHub issues to track public bugs and requests. Please ensure your description is clear and has sufficient instructions to be able to reproduce the issue.
Any questions?
Don’t hesitate to contact us if you have any questions. Contact @samuelmurail or ask your question on issues.
Thank you for your contributions!