Skip to content

Latest commit

 

History

History
196 lines (143 loc) · 7.37 KB

CONTRIBUTING.md

File metadata and controls

196 lines (143 loc) · 7.37 KB

Contributing to pros-rs

Thanks for taking the time to help this project improve! All contributions are helpful and welcome.

Table of Contents

I have a question!

If you just have a question about the library or need help, the best way you can get support is by creating a post in the Q&A Discussions category or by asking in the project's Discord Server.

Ways to contribute

Reporting a problem

If something is not working as expected, you can use the repository's Issues page to report it. Before creating a bug report, use the search bar to make sure that what you're experiencing isn't already a known issue.

If you find an issue that describes the same problem

If the issue you found is closed, feel free to make a new one, but it helps to link the one you found under the Additional information header.

If the issue you found is open, the best way to help is by leaving a comment on it, describing your experience.

Reporting a small problem

If the problem you're reporting is a typo or a just a simple mistake, you might want to use the Small issue template in the next step.

Writing and submitting your report

When creating your report, you should use the Bug report issue template to be provided with a list of questions that will help describe the problem you are having.

Additionally, try to do the following:

  • Give the issue a clear and concise title.
  • Fill out as many of the template's headers as possible.
  • Provide a code sample to help readers reproduce the issue.
  • Provide your Rust version, pros-rs version, and operating system.
  • If you have screenshots, photos, or videos, attach them to the GitHub issue.
  • Explain when the problem started happening. Was it after a recent update? Or has it always been an issue?

Suggesting features

First of all, thanks for wanting to share your idea! Feature requests help this project grow.

Before submitting your suggestion, please consider the following:

  • Your idea may have already been discussed. Use the Issues search bar to see if there are any similar suggestions.
  • Your idea should be within the project's scope. The goal of this project is to provide an opinionated Rust framework for developing VEX V5 robots.

Writing and submitting your suggestion

When creating your report, you should use the Feature request issue template to be provided with a list of questions that will help describe the suggestion you are submitting.

Additionally, try to do the following:

  • Give the issue a clear and concise title.
  • Fill out as many of the template's headers as possible.
  • Provide code samples, photos, or videos to help readers understand what you're saying.
  • Consider how the suggestion would be implemented.

Contributing code

The simplest ways to start contributing code to pros-rs are by checking the TODO list or by finding an Issue to tackle. Each one requests changes to the project, and some are more involved than others. Issues with the good first issue label are good candidates for your first contribution.

When you're ready to start coding, fork the project, then use git clone or gh repo clone to clone the repository.

Project structure

  • .github/: CI workflows & issue/pull request templates
  • .devcontainer/: GitHub Codespaces configuration
  • .vscode/: Visual Studio Code configuration
  • .cargo/: Cargo configuration
  • pros/: Project source code
  • pros-sys/: C bindings source code
  • flake.nix: Nix package configuration

Code styleguide

All Rust source code should be formatted with Rustfmt, by running cargo fmt after making changes.

Use Clippy to lint your changes: cargo clippy.

Committing & commit messages

All pros-rs projects use Conventional Commits to keep commit messages informational. Conventional commits have the following form:

type(OptionalScope): description

[optional body]

[optional footers]

Here is an example of a conforming commit message:

docs(contributing): add Acknowledgements section

From this commit, you can easily see that the commit altered docs in the contributing guidelines file by adding an Acknowledgements section. When writing the commit description, make sure to use the present imperative tense ("add ABC" instead of "added ABC" or "adds ABC"). It might help to imagine that you are telling someone to do something ("go add ABC").

Here is a list of common commit types:

Type Description
chore Changes to workspace & configuration files
feat New features
fix Bug fixes
refactor Changes to internal features but not the external interface
revert Reversion of a previous change
style Changes to code style and formatting
test Changes or additions to unit tests
types Changes to type definitions
docs Changes to documentation files

Pull requests

When you're ready for your changes to be merged, head over to the Pull Requests page and create a new pull request. Include a description of what changed, and link to an Issue if applicable.

If you're not quite done with the changes but are ready to start sharing them, you can mark it as a draft to prevent it from being merged.

Once your pull request has been merged, congrats! Your changes will be mentioned in the next release's changelog.

Acknowledgements

This CONTRIBUTING.md file contains excerpts from and was inspired in part by the Atom editor's CONTRIBUTING.md. Click here to go check it out.