Skip to content

Commit b1b884e

Browse files
committed
Add spellchecking to continuous integration infrastructure
1 parent 52fbf4c commit b1b884e

File tree

3 files changed

+29
-1
lines changed

3 files changed

+29
-1
lines changed

DESCRIPTION

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ Authors@R: c(
1717
)
1818
Description: Your package description. It must end with a period (".") and
1919
include relevant bibliographical references if applicable, using the
20-
following format: Author et al. (2023) <doi:XXXX.XXXXXX>.
20+
following format: Author et al. (2023) <doi:10.5281/zenodo.6619350>.
2121
License: MIT + file LICENSE
2222
Encoding: UTF-8
2323
Roxygen: list(markdown = TRUE)
2424
RoxygenNote: 7.2.1
2525
Suggests:
26+
spelling,
2627
testthat (>= 3.0.0)
2728
Config/testthat/edition: 3
2829
Config/Needs/website:
2930
epiverse-trace/epiversetheme
31+
Language: en-US

inst/WORDLIST

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
CMD
2+
Codecov
3+
Epiverse
4+
Lifecycle
5+
Titlecase
6+
al
7+
codecov
8+
doi
9+
et
10+
gh
11+
github
12+
https
13+
io
14+
lifecycle
15+
packagename
16+
repo
17+
svg
18+
yaml
19+
zenodo

tests/spelling.R

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
if (requireNamespace("spelling", quietly = TRUE)) {
2+
spelling::spell_check_test(
3+
vignettes = TRUE,
4+
error = TRUE,
5+
skip_on_cran = TRUE
6+
)
7+
}

0 commit comments

Comments
 (0)