Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update issue templates #10

Merged
merged 3 commits into from
Apr 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE/nieuwe-dataset.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
name: Nieuwe dataset
about: Checklist voor het uploaden van een nieuwe dataset
title: '[NEW dataset]'
labels: New, Data
assignees:

---

## Voorstel dataset naam:

## checklist:
- [ ] plaats de ruwe data in `./data_raw/`
- [ ] schrijf (of kopieer) script, in `./src/` om de ruwe data om te zetten in een `.rda` of `.rds` bestand
- [ ] creëer het data bestand en schrijf het weg met `saveRDS()` of `save()`<sup>1</sup>
- [ ] voorzie een auteur met `#' @author`
- [ ] voorzie een beschrijving met `#' @description`
- [ ] voer `roxygen2::roxygenise()` uit in de console
- [ ] voer `devtools::check()` uit in de console
- [ ] los eventuele errors, warnings en notes<sup>2</sup> op
- [ ] maak een pull request met @soriadelva of @SanderDevisscher en eventueel andere relevante gebruikers als reviewer.

*<sup>1</sup>`saveRDS()` kan gebruikt worden om een enkel bestand op te slaan terwijl `save()` het opslaan van meerdere bestanden in 1 .rda/.rds bestand toelaat.*

*<sup>2</sup>in de mate van het mogelijke.*
7 changes: 5 additions & 2 deletions .github/ISSUE_TEMPLATE/nieuwe-functie-aanmaken.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
---
name: Nieuwe functie aanmaken
about: Checklist voor het aanmaken van een nieuwe functie
title: "[NEW-FUNCTION]"
labels: ''
title: '[NEW function]'
labels: New, Function
assignees: ''

---
## Voorstel functie naam

## Checklist
- [ ] maak een nieuw R-bestand
- [ ] sla het R bestand op onder `./R` met filenaam is gelijk aan functienaam
- [ ] voorzie een functie titel met `#'` op regel 1 van je script
- [ ] voorzie een auteur met `#' @author`
- [ ] voorzie een beschrijving met `#' @description`
- [ ] voorzie uitleg over de input parameter(s) met `#' @param name`
Expand Down
Loading