-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
51 lines (41 loc) · 1.81 KB
/
README.Rmd
File metadata and controls
51 lines (41 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# DependencyReviewer
<!-- badges: start -->
[](https://github.com/darwin-eu-dev/DependencyReviewer/actions/workflows/R-CMD-check.yaml)


<!-- badges: end -->
DependencyReviewer is a package that Helps investigating other packages during code review by looking at their dependencies.
## Features
- Check your used dependencies against the Darwin-EU white list.
- Easily review your function use per dependency for your package.
- An easy way to get graph data of all your dependencies to see how your package depends on any (transitive) dependencies.
- Use predefined Darwin Lint functions to lint your package.
- Easily calculate percentages of how many style, warning, and error messages are encountered across your package.
- A shiny app to interactively investigate your package.
## Installation <a name="Installation"></a>
You can install the development version of DependencyReviewer like so:
```{r eval=FALSE}
install.packages("remotes")
remotes::install_github("darwin-eu-dev/DependencyReviewer")
```
DependencyReviewer is now available on CRAN.
```{r eval=FALSE}
install.packages("DependencyReviewer")
```
## Features wishlist
- Show lintr output in the shinyApp
- Show test coverage in the shinyApp
- Include spelling checking using `spelling::spell_check_package`
- An automated way to 'plot' out your package functions (UML-like).