generated from pharmaverse/admiraltemplate
-
Notifications
You must be signed in to change notification settings - Fork 6
/
_pkgdown.yml
138 lines (116 loc) · 4.04 KB
/
_pkgdown.yml
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
url: https://pharmaverse.github.io/admiraldev/
template:
bootstrap: 5
params:
bootswatch: flatly
repo:
url:
home: https://github.com/pharmaverse/admiraldev
source: https://github.com/pharmaverse/admiraldev/blob/main/
issue: https://github.com/pharmaverse/admiraldev/issues/
user: https://github.com/
news:
cran_dates: true
development:
mode: auto
authors:
before: "We define *authors* as those who are actively maintaining the code base, and *contributors* as those who made a significant contribution in the past."
footer:
roles: [aut, ctb, cre, fnd]
text: "Developed by"
sidebar:
roles: [aut]
reference:
- title: Assertion Functions
desc: Checks the inputs for user-facing functions and provides error, warnings and other messaging around expectation of inputs.
contents:
- has_keyword('assertion')
- title: Get Functions
desc: Gets information or input from an object
contents:
- has_keyword('get')
- title: Is Functions
desc: Is the object what it says it is
contents:
- has_keyword('is')
- title: What Functions
desc: What type of object is this?
contents:
- has_keyword('what')
- title: Warning Functions
desc: Custom warnings intended for users
contents:
- has_keyword('warnings')
- title: Test Helper Functions
desc: Test Utilities that help with organization and presentation of tests
contents:
- has_keyword('test_helper')
- title: Temporary Variables
desc: Tools for creating and removing temporary variables within a dataset
contents:
- has_keyword('tmp_vars')
- title: Getting Datasets
desc: Retrieve a dataset from the `admiraldev_environment` enironment
contents:
- has_keyword('datasets')
- title: Quosure Helper Functions
desc: Helping your quosure needs
contents:
- has_keyword('quo')
- title: Quoting Helper Functions
desc: Helping your quoting needs
contents:
- has_keyword('quote')
- subtitle: Utilities used within Derivation Functions
contents:
- has_keyword('utils_help')
- title: Join Functions
desc: dplyr join function without warning about different attributes
contents:
- has_keyword('joins')
- title: Miscellaneous
desc: Utilities without a theme
contents:
- has_keyword('dev_utility')
- has_keyword('messages')
- title: Deprecated
desc: |
Functions and arguments may need to be removed or replaced over time.
In such cases, the function or argument will enter a 3 year deprecation cycle.
The cycle will be tied as close as sensibly possible to a package release.
When a function is deprecated:
* In Year 1 there will be a message issued if you use the function/argument, but it will still be available to use.
* In Year 2 a warning will be produced if you use the function/argument, but it will still be available to use.
* In Year 3, an error will be produced if you use the function/argument and no longer be able to use.
* Finally, after 3 years, the function/argument and related documentation and tests will be removed from `{admiral}`.
*Note: Guidance on replacement functionality will be found in the message produced as well as in the function's
documentation*
Below, you can find a list of functions in the process of being deprecated:
contents:
- has_keyword("deprecated")
navbar:
components:
reference:
text: Reference
href: reference/index.html
articles:
text: Developer Guides
menu:
- text: Programming Strategy
href: articles/programming_strategy.html
- text: Writing Vignettes
href: articles/writing_vignettes.html
- text: Unit Test Guidance
href: articles/unit_test_guidance.html
- text: Guidance for git and GitHub Usage
href: articles/git_usage.html
- text: Pull Request Review Guidance
href: articles/pr_review_guidance.html
- text: R CMD Issues
href: articles/rcmd_issues.html
- text: Release Strategy
href: articles/release_strategy.html
- text: Test Data Guidance
href: articles/test_data_guidance.html
- text: Package Extensions
href: articles/package_extensions.html