This project was made as an API wrapper for the Government of Canada Vehicle Recall Database API. Please read through the Code of Conduct before making any contributions.
Please send a GitHub Pull Request to caRecall with a clear list of what you’ve done (read more about pull requests). When you send a pull request, it would be great if you include examples. Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit).
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."
This code should conform to the tidyverse style guide. Text that contains valid R code should be marked as such using backticks. This includes:
See https://style.tidyverse.org/documentation.html for more info.
Although the style guide explains the “what” and the “why”, another important decision is how to enforce a specific code style. For this we recommend the styler package (https://styler.r-lib.org); its default behaviour enforces the tidyverse style guide. There are many ways to apply styler to your code, depending on the context:
Thanks, Nathan Smith, Ryan Koenig, Mitch Harris