-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathDESCRIPTION
101 lines (101 loc) · 2.83 KB
/
DESCRIPTION
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
Package: goodpractice
Title: Advice on R Package Building
Version: 1.0.5.9000
Authors@R:
c(
person(given = "Mark",
family = "Padgham",
role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-2172-5265")),
person(given = "Ascent Digital Services UK Limited",
role = "cph",
comment = c(GitHub = "MangoTheCat")),
person(given = "Karina",
family = "Marks",
role = "aut",
email = "[email protected]",
comment = c(GitHub = "KarinaMarks")),
person(given = "Daniel",
family = "de Bortoli",
role = c("aut"),
comment = c(GitHub = "ddbortoli")),
person(given = "Gabor",
family = "Csardi",
role = "aut",
email = "[email protected]"),
person(given = "Hannah",
family = "Frick",
role = "aut",
email = "[email protected]"),
person(given = "Owen",
family = "Jones",
role = "aut",
email = "[email protected]",
comment = c(GitHub = "owenjonesuob")),
person(given = "Hannah",
family = "Alexander",
role = "aut",
email = "[email protected]"),
person(given = "Ana",
family = "Simmons",
role = c("ctb"),
email = "[email protected]",
comment = c(GitHub = "anasimmons")),
person(given = "Fabian",
family = "Scheipl",
role = "ctb",
comment = c(GitHub = "fabian-s")))
Description: Give advice about good practices when building R packages.
Advice includes functions and syntax to avoid, package structure, code
complexity, code formatting, etc.
License: MIT + file LICENSE
URL: https://docs.ropensci.org/goodpractice/, https://github.com/ropensci-review-tools/goodpractice
BugReports: https://github.com/ropensci-review-tools/goodpractice/issues
Imports:
cli,
covr,
cyclocomp (>= 1.1.0),
desc,
jsonlite,
lintr (>= 3.0.0),
praise,
rcmdcheck,
rstudioapi,
tools,
utils,
whoami,
withr
Suggests:
knitr,
rmarkdown,
testthat (>= 3.0.0)
VignetteBuilder:
knitr
Encoding: UTF-8
Roxygen: list(markdown = TRUE)
RoxygenNote: 7.3.2
Config/testthat/edition: 3
Collate:
'api.R'
'customization.R'
'lists.R'
'chk_covr.R'
'chk_cyclocomp.R'
'chk_description.R'
'chk_lintr.R'
'chk_namespace.R'
'chk_rcmdcheck.R'
'chk_tnf.R'
'gp.R'
'package.R'
'prep_covr.R'
'prep_cyclocomp.R'
'prep_description.R'
'prep_expressions.R'
'prep_lintr.R'
'prep_namespace.R'
'prep_rcmdcheck.R'
'print.R'
'rstudio_markers.R'
'utils.R'