tools/update-aspell-wordlist.R

# Updates the wordlist used by CRAN checks.

library(here)

WORDLIST <- here("inst", "WORDLIST")

words <- readLines(WORDLIST)

dir.create(".aspell", showWarnings = FALSE)

saveRDS(words, file = file.path(".aspell", "filebin.rds"), version = 2)
datawookie/filebin documentation built on Sept. 3, 2023, 1:08 p.m.