We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f601104 commit 02363b7Copy full SHA for 02363b7
R/check-files.R
@@ -32,6 +32,8 @@ spell_check_files <- function(path, ignore = character(), lang = "en_US"){
32
spell_check_file_one <- function(path, dict){
33
if(grepl("\\.r?md$",path, ignore.case = TRUE))
34
return(spell_check_file_md(path, dict = dict))
35
+ if(grepl("\\.rd$", path, ignore.case = TRUE))
36
+ return(spell_check_file_rd(path, dict = dict))
37
if(grepl("\\.(rnw|snw)$",path, ignore.case = TRUE))
38
return(spell_check_file_knitr(path = path, format = "latex", dict = dict))
39
if(grepl("\\.(tex)$",path, ignore.case = TRUE))
0 commit comments