Skip to content

Commit df8aa55

Browse files
committed
Merge latest updates from test
Merge branch 'test' into 362481-long-labels # Conflicts: # NEWS.md
2 parents 1e6b4d5 + bf32f12 commit df8aa55

5 files changed

Lines changed: 8 additions & 5 deletions

File tree

.lintr.R

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ linters <- lintr::modify_defaults(
44
, line_length_linter = NULL # we see how long lines are when we write them
55
, indentation_linter = NULL
66
, trailing_whitespace_linter = NULL
7-
, cyclocomp_linter = NULL # prevents trivial amount of nesting and long but straightforward functions
87
, object_name_linter = NULL # we have reasons to capitalize. nobody in our team CamelCase. shiny does
98
, object_length_linter = NULL # we don't type long var names just because
109
, pipe_continuation_linter = NULL # wickham being overly prescriptive

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: dv.papo
22
Title: Patient Profile
3-
Version: 2.2.0-9000
3+
Version: 2.2.0-9001
44
Authors@R:
55
c(person("Boehringer-Ingelheim Pharma GmbH & Co.KG", role = c("cph", "fnd")),
66
person(given = "Korbinian",

NEWS.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
1-
# dv.papo 2.2.0-9000
1+
# dv.papo 2.2.0-9001
22

33
- Wrap decode column into no more than two lines (to avoid overlap).
44

5+
# dv.papo 2.2.0-9000
6+
7+
- [NOT USER-FACING] Tweak lintr rules.
8+
59
# dv.papo 2.2.0
610

711
- Refactor code to use {ggiraph} and {patchwork} instead of {plotly}.

R/utils-misc.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ merge_with_no_duplicate_cols <- function(a, b, by) merge(a, b[c(by, setdiff(name
3333
#' performing optional round up using the level of precision present
3434
#' in the input data
3535
#'
36-
#' @param data [character(n)] Vector of dates
36+
#' @param data `[character(n)]` Vector of dates
3737
#'
3838
#' @keywords internal
3939
#'

tests/testthat/test-all.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ test_that(
166166
)
167167

168168
column_count_tst <- 4
169-
records <- testd1_sl %>% dplyr::filter(USUBJID == "01-701-1015")
169+
records <- testd1_sl |> dplyr::filter(USUBJID == "01-701-1015")
170170

171171
test_that(
172172
"Subject level information will be shown in patient information section,

0 commit comments

Comments
 (0)