Skip to content

Commit

Permalink
spaceout
Browse files Browse the repository at this point in the history
  • Loading branch information
mpadge committed Sep 27, 2023
1 parent 014b928 commit 7c230da
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pkgcheck
Title: rOpenSci Package Checks
Version: 0.1.2.006
Version: 0.1.2.007
Authors@R: c(
person("Mark", "Padgham", , "[email protected]", role = c("aut", "cre"),
comment = c(ORCID = "0000-0003-2172-5265")),
Expand Down
12 changes: 6 additions & 6 deletions R/check-fns-have-exs.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#' Check whether all functions have examples.
#'
#' @param checks A 'pkgcheck' object with full \pkg{pkgstats} summary and
Expand All @@ -8,11 +7,12 @@
#' @noRd
pkgchk_fns_have_exs <- function (checks) {

rd <- list.files (fs::path (
checks$pkg$path, "man"
),
pattern = "\\.Rd$",
full.names = TRUE
rd <- list.files (
fs::path (
checks$pkg$path, "man"
),
pattern = "\\.Rd$",
full.names = TRUE
)

# don't check for examples in datasets (#103), identified by keyword
Expand Down
1 change: 0 additions & 1 deletion R/check-fns-have-return-vals.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#' Check that all functions document their return values.
#'
#' The reflects a CRAN checks for all new submissions, to ensure that return
Expand Down
1 change: 0 additions & 1 deletion R/info-pkgdown.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

#' Get list of all 'concepts' used to group man entries.
#'
#' @param path Location of local repository to report on
Expand Down
2 changes: 1 addition & 1 deletion codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"codeRepository": "https://github.com/ropensci-review-tools/pkgcheck",
"issueTracker": "https://github.com/ropensci-review-tools/pkgcheck/issues",
"license": "https://spdx.org/licenses/GPL-3.0",
"version": "0.1.2.006",
"version": "0.1.2.007",
"programmingLanguage": {
"@type": "ComputerLanguage",
"name": "R",
Expand Down

0 comments on commit 7c230da

Please sign in to comment.