We greatly appreciate contributions to MVT!
Your involvement, whether through identifying issues, improving functionality, or enhancing documentation, is very much appreciated. To ensure smooth collaboration and a welcoming environment, we've outlined some key guidelines for contributing below.
Contributing to an open-source project like MVT might seem overwhelming at first, but we're here to support you!
Whether you're a technologist, a frontline human rights defender, a field researcher, or someone new to consensual spyware forensics, there are many ways to make meaningful contributions.
Here's how you can get started:
-
Explore the codebase:
- Browse the repository to get familar with MVT. Many MVT modules are simple in functionality and easy to understand.
- Look for
TODO:
orFIXME:
comments in the code for areas that need attention.
-
Check Github issues:
- Look for issues tagged with "help wanted" or "good first issue" to find tasks that are beginner-friendly or where input from the community would be helpful.
-
Ask for guidance:
- If you're unsure where to start, feel free to open a discussion or comment on an issue.
- Report issues:
- Found a bug? Please check existing issues to see if it's already reported. If not, open a new issue. Mobile operating systems and databases are constantly evolving, an new errors may appear spontaniously in new app versions.
Please provide as much information as possible about the prodblem including: any error messages, steps to reproduce the problem, and any logs or screenshots that can help.
-
Suggest features:
- If you have an idea for new functionality, create a feature request issue and describe your proposal.
-
Submit code:
- Fork the repository and create a new branch for your changes.
- Ensure your changes align with the code style guidelines (see below).
- Open a pull request (PR) with a clear description of your changes and link it to any relevant issues.
-
Documentation contributions:
- Improving documentation is just as valuable as contributing code! If you notice gaps or inaccuracies in the documentation, feel free to submit changes or suggest updates.
Please follow these code style guidelines for consistency and readability:
- Indentation: use 4 spaces per tab.
- Quotes: Use double quotes (
"
) by default. Use single quotes ('
) for nested strings instead of escaping (\"
), or when using f-formatting. - Maximum line length:
- Aim for lines no longer than 80 characters.
- Exceptions are allowed for long log lines or strings, which may extend up to 100 characters.
- Wrap lines that exceed 100 characters.
Follow PEP 8 guidelines for indentation and overall Python code style. All MVT code is automatically linted with Ruff before merging.
Please check your code before opening a pull request by running make ruff
We aim to create a supportive and collaborative environment for all contributors. If you run into any challenges, feel free to reach out through the discussions or issues section of the repository.
Your contributions, big or small, help improve MVT and are always appreciated.